mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-05 05:18:53 +08:00
15 lines
356 B
C
15 lines
356 B
C
#pragma once
|
|
|
|
/* In tbox_main.cpp */
|
|
void tbox_register(void);
|
|
|
|
/* In tbox_wait.cpp */
|
|
int tbox_thread_wait(AUT_LINE *test_line, void *arg);
|
|
int tbox_fiber_wait(AUT_LINE *test_line, void *arg);
|
|
|
|
/* In tbox_fiber.cpp */
|
|
int tbox_fiber_consume(AUT_LINE *test_line, void *arg);
|
|
|
|
/* In tbox_mixed.cpp */
|
|
int tbox_mixed_consume(AUT_LINE *test_line, void *arg);
|