pthread09.h 226 B

123456789
  1. typedef struct {
  2. pthread_t thread_tid; /* thread ID */
  3. long thread_count; /* #connections handled */
  4. } Thread;
  5. Thread *tptr; /* array of Thread structures; calloc'ed */
  6. int listenfd, nthreads;
  7. socklen_t addrlen;