blob: 1b52dd7fbe5dcb8d6b18e3dfaeeb84de6bb6c11a [file] [log] [blame]
Igor Sysoevd90282d2004-09-28 08:34:51 +00001
2/*
Igor Sysoevff8da912004-09-29 16:00:49 +00003 * Copyright (C) Igor Sysoev
Maxim Konovalovf8d59e32012-01-18 15:07:43 +00004 * Copyright (C) Nginx, Inc.
Igor Sysoevd90282d2004-09-28 08:34:51 +00005 */
6
7
Igor Sysoevb54698b2004-02-23 20:57:12 +00008#ifndef _NGX_THREAD_H_INCLUDED_
9#define _NGX_THREAD_H_INCLUDED_
10
11
12#include <ngx_config.h>
13#include <ngx_core.h>
14
Valentin Bartenev27e49d72015-03-14 17:37:07 +030015#if (NGX_THREADS)
16
17#include <pthread.h>
18
19
20typedef pthread_mutex_t ngx_thread_mutex_t;
21
22ngx_int_t ngx_thread_mutex_create(ngx_thread_mutex_t *mtx, ngx_log_t *log);
23ngx_int_t ngx_thread_mutex_destroy(ngx_thread_mutex_t *mtx, ngx_log_t *log);
24ngx_int_t ngx_thread_mutex_lock(ngx_thread_mutex_t *mtx, ngx_log_t *log);
25ngx_int_t ngx_thread_mutex_unlock(ngx_thread_mutex_t *mtx, ngx_log_t *log);
26
27
28typedef pthread_cond_t ngx_thread_cond_t;
29
30ngx_int_t ngx_thread_cond_create(ngx_thread_cond_t *cond, ngx_log_t *log);
31ngx_int_t ngx_thread_cond_destroy(ngx_thread_cond_t *cond, ngx_log_t *log);
32ngx_int_t ngx_thread_cond_signal(ngx_thread_cond_t *cond, ngx_log_t *log);
33ngx_int_t ngx_thread_cond_wait(ngx_thread_cond_t *cond, ngx_thread_mutex_t *mtx,
34 ngx_log_t *log);
35
36
37#if (NGX_LINUX)
38
39typedef pid_t ngx_tid_t;
40#define NGX_TID_T_FMT "%P"
41
42#elif (NGX_FREEBSD)
43
44typedef uint32_t ngx_tid_t;
45#define NGX_TID_T_FMT "%uD"
46
47#elif (NGX_DARWIN)
48
49typedef uint64_t ngx_tid_t;
50#define NGX_TID_T_FMT "%uA"
51
52#else
53
54typedef uint64_t ngx_tid_t;
55#define NGX_TID_T_FMT "%uA"
56
57#endif
58
59ngx_tid_t ngx_thread_tid(void);
60
61#define ngx_log_tid ngx_thread_tid()
62
63#else
64
Igor Sysoev1b735832004-11-11 14:07:14 +000065#define ngx_log_tid 0
66#define NGX_TID_T_FMT "%d"
Igor Sysoevb54698b2004-02-23 20:57:12 +000067
Valentin Bartenev27e49d72015-03-14 17:37:07 +030068#endif
69
Igor Sysoevb54698b2004-02-23 20:57:12 +000070
Igor Sysoevb54698b2004-02-23 20:57:12 +000071#endif /* _NGX_THREAD_H_INCLUDED_ */