-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathlthreadpool.h
70 lines (62 loc) · 1.69 KB
/
lthreadpool.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
* Copyright 2014 The Luvit Authors. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifndef LUV_LTHREADPOOL_H
#define LUV_LTHREADPOOL_H
#include "luv.h"
#define LUV_THREAD_MAXNUM_ARG 9
typedef struct {
// support basic lua type LUA_TNIL, LUA_TBOOLEAN, LUA_TNUMBER, LUA_TSTRING
// and support uv_handle_t userdata
int type;
union
{
struct {
int isinteger;
union {
lua_Number n;
lua_Integer i;
} value;
} num;
int boolean;
struct {
const char* base;
size_t len;
} str;
struct {
const void* data;
size_t size;
const char* metaname;
} udata;
} val;
int ref[2]; // ref of string or userdata
} luv_val_t;
typedef struct {
int argc;
int flags; // control gc
luv_val_t argv[LUV_THREAD_MAXNUM_ARG];
} luv_thread_arg_t;
//luajit miss LUA_OK
#ifndef LUA_OK
#define LUA_OK 0
#endif
//LUV flags for thread or threadpool args
#define LUVF_THREAD_SIDE_MAIN 0x00
#define LUVF_THREAD_SIDE_CHILD 0x01
#define LUVF_THREAD_MODE_ASYNC 0x02
#define LUVF_THREAD_SIDE(i) ((i)&0x01)
#define LUVF_THREAD_ASYNC(i) ((i)&0x02)
#endif //LUV_LTHREADPOOL_H