Changeset 6fa9a99d in mainline for contrib/arch/uspace/lib/libc
- Timestamp:
- 2014-01-05T17:50:01Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 91db0280
- Parents:
- 208b5f5
- Location:
- contrib/arch/uspace/lib/libc
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/arch/uspace/lib/libc/bind
r208b5f5 r6fa9a99d 1 1 /* Bind %% to kernel interfaces */ 2 bind %%:sys_k log to kernel:sys_klog;2 bind %%:sys_kio to kernel:sys_kio; 3 3 bind %%:sys_tls to kernel:sys_tls; 4 4 bind %%:sys_thread to kernel:sys_thread; -
contrib/arch/uspace/lib/libc/protocol
r208b5f5 r6fa9a99d 1 1 /* Protocol according to which libc uses kernel syscalls */ 2 2 ( 3 !sys_k log.sys_klog+3 !sys_kio.sys_kio + 4 4 !sys_tls.sys_tls_set + 5 5 !sys_thread.sys_thread_create + -
contrib/arch/uspace/lib/libc/requires
r208b5f5 r6fa9a99d 1 1 /* Kernel interfaces required by libc */ 2 sys_k log sys_klog;2 sys_kio sys_kio; 3 3 sys_tls sys_tls; 4 4 sys_thread sys_thread; -
contrib/arch/uspace/lib/libc/subsume
r208b5f5 r6fa9a99d 1 1 /* Subsume %% to kernel interfaces */ 2 subsume %%:sys_k log to sys_klog;2 subsume %%:sys_kio to sys_kio; 3 3 subsume %%:sys_tls to sys_tls; 4 4 subsume %%:sys_thread to sys_thread;
Note:
See TracChangeset
for help on using the changeset viewer.