Changeset 8b5690f in mainline for uspace/lib/c/generic/private/thread.h
- Timestamp:
- 2011-02-03T05:11:01Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ba38f72c
- Parents:
- 22027b6e (diff), 86d7bfa (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/private/thread.h
r22027b6e r8b5690f 1 1 /* 2 * Copyright (c) 20 08 Lukas Mejdrech2 * Copyright (c) 2011 Martin Decky 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup tcp29 /** @addtogroup libc 30 30 * @{ 31 31 */ 32 33 32 /** @file 34 * TCP module functions.35 * The functions are used as TCP module entry points.36 33 */ 37 34 38 #ifndef NET_TCP_MODULE_H_39 #define NET_TCP_MODULE_H_35 #ifndef LIBC_PRIVATE_THREAD_H_ 36 #define LIBC_PRIVATE_THREAD_H_ 40 37 41 #include <async.h> 42 #include <ipc/ipc.h> 38 #include <kernel/proc/uarg.h> 43 39 44 extern int tcp_initialize(async_client_conn_t); 45 extern int tcp_message_standalone(ipc_callid_t, ipc_call_t *, ipc_call_t *, 46 int *); 40 extern void __thread_entry(void); 41 extern void __thread_main(uspace_arg_t *); 47 42 48 43 #endif
Note:
See TracChangeset
for help on using the changeset viewer.