grpc
third_party
libuv
test
test-threadpool.c
Go to the documentation of this file.
1
/* Copyright Joyent, Inc. and other Node contributors. All rights reserved.
2
*
3
* Permission is hereby granted, free of charge, to any person obtaining a copy
4
* of this software and associated documentation files (the "Software"), to
5
* deal in the Software without restriction, including without limitation the
6
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
7
* sell copies of the Software, and to permit persons to whom the Software is
8
* furnished to do so, subject to the following conditions:
9
*
10
* The above copyright notice and this permission notice shall be included in
11
* all copies or substantial portions of the Software.
12
*
13
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
18
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
19
* IN THE SOFTWARE.
20
*/
21
22
#include "
uv.h
"
23
#include "
task.h
"
24
25
static
int
work_cb_count
;
26
static
int
after_work_cb_count
;
27
static
uv_work_t
work_req
;
28
static
char
data
;
29
30
31
static
void
work_cb
(
uv_work_t
*
req
) {
32
ASSERT
(
req
== &
work_req
);
33
ASSERT
(
req
->data == &
data
);
34
work_cb_count
++;
35
}
36
37
38
static
void
after_work_cb
(
uv_work_t
*
req
,
int
status
) {
39
ASSERT
(
status
== 0);
40
ASSERT
(
req
== &
work_req
);
41
ASSERT
(
req
->data == &
data
);
42
after_work_cb_count
++;
43
}
44
45
46
TEST_IMPL
(threadpool_queue_work_simple) {
47
int
r
;
48
49
work_req
.data = &
data
;
50
r
=
uv_queue_work
(
uv_default_loop
(), &
work_req
,
work_cb
,
after_work_cb
);
51
ASSERT
(
r
== 0);
52
uv_run
(
uv_default_loop
(),
UV_RUN_DEFAULT
);
53
54
ASSERT
(
work_cb_count
== 1);
55
ASSERT
(
after_work_cb_count
== 1);
56
57
MAKE_VALGRIND_HAPPY
();
58
return
0;
59
}
60
61
62
TEST_IMPL
(threadpool_queue_work_einval) {
63
int
r
;
64
65
work_req
.data = &
data
;
66
r
=
uv_queue_work
(
uv_default_loop
(), &
work_req
, NULL,
after_work_cb
);
67
ASSERT
(
r
== UV_EINVAL);
68
69
uv_run
(
uv_default_loop
(),
UV_RUN_DEFAULT
);
70
71
ASSERT
(
work_cb_count
== 0);
72
ASSERT
(
after_work_cb_count
== 0);
73
74
MAKE_VALGRIND_HAPPY
();
75
return
0;
76
}
task.h
after_work_cb_count
static int after_work_cb_count
Definition:
test-threadpool.c:26
ASSERT
#define ASSERT(expr)
Definition:
task.h:102
status
absl::Status status
Definition:
rls.cc:251
TEST_IMPL
TEST_IMPL(threadpool_queue_work_simple)
Definition:
test-threadpool.c:46
uv_run
UV_EXTERN int uv_run(uv_loop_t *, uv_run_mode mode)
Definition:
unix/core.c:361
uv_queue_work
UV_EXTERN int uv_queue_work(uv_loop_t *loop, uv_work_t *req, uv_work_cb work_cb, uv_after_work_cb after_work_cb)
Definition:
threadpool.c:338
uv_default_loop
UV_EXTERN uv_loop_t * uv_default_loop(void)
Definition:
uv-common.c:733
work_cb
static void work_cb(uv_work_t *req)
Definition:
test-threadpool.c:31
after_work_cb
static void after_work_cb(uv_work_t *req, int status)
Definition:
test-threadpool.c:38
req
static uv_connect_t req
Definition:
test-connection-fail.c:30
UV_RUN_DEFAULT
@ UV_RUN_DEFAULT
Definition:
uv.h:254
uv.h
MAKE_VALGRIND_HAPPY
#define MAKE_VALGRIND_HAPPY()
Definition:
task.h:229
work_req
static uv_work_t work_req
Definition:
test-threadpool.c:27
fix_build_deps.r
r
Definition:
fix_build_deps.py:491
work_cb_count
static int work_cb_count
Definition:
test-threadpool.c:25
uv_work_s
Definition:
uv.h:1055
data
static char data
Definition:
test-threadpool.c:28
grpc
Author(s):
autogenerated on Fri May 16 2025 03:00:27