aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index 335e5ad2..5c118e2e 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -637,10 +637,10 @@ struct MHD_Connection
637 struct sockaddr *addr; 637 struct sockaddr *addr;
638 638
639 /** 639 /**
640 * Thread for this connection (if we are using 640 * Thread handle for this connection (if we are using
641 * one thread per connection). 641 * one thread per connection).
642 */ 642 */
643 pthread_t pid; 643 MHD_thread_handle_ pid;
644 644
645 /** 645 /**
646 * Size of read_buffer (in bytes). This value indicates 646 * Size of read_buffer (in bytes). This value indicates
@@ -1070,9 +1070,9 @@ struct MHD_Daemon
1070 unsigned int worker_pool_size; 1070 unsigned int worker_pool_size;
1071 1071
1072 /** 1072 /**
1073 * PID of the select thread (if we have internal select) 1073 * The select thread handle (if we have internal select)
1074 */ 1074 */
1075 pthread_t pid; 1075 MHD_thread_handle_ pid;
1076 1076
1077 /** 1077 /**
1078 * Mutex for per-IP connection counts. 1078 * Mutex for per-IP connection counts.