Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ngx_pthread.h « unix « os « src - github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 845655f57bd2f4312e29f5355dcfb1adee4e3be4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _NGX_OS_THREAD_H_INCLUDED_
#define _NGX_OS_THREAD_H_INCLUDED_


#include <pthread.h>


typedef pthread_t          ngx_os_tid_t;
typedef int                ngx_tid_t;

typedef void *(*)(void *)  ngx_thread_start_routine_t


#endif /* _NGX_OS_THREAD_H_INCLUDED_ */