Changeset d314571 in mainline for kernel/generic/src
- Timestamp:
- 2018-11-11T15:46:26Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9e889f6
- Parents:
- 5c03bd30
- git-author:
- Jakub Jermar <jakub@…> (2018-11-10 14:36:06)
- git-committer:
- Jakub Jermar <jakub@…> (2018-11-11 15:46:26)
- Location:
- kernel/generic/src
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/main/main.c
r5c03bd30 rd314571 78 78 #include <synch/waitq.h> 79 79 #include <synch/futex.h> 80 #include <synch/syswaitq.h> 80 81 #include <arch/arch.h> 81 82 #include <arch.h> … … 279 280 thread_init(); 280 281 futex_init(); 282 sys_waitq_init(); 281 283 282 284 sysinfo_set_item_data("boot_args", NULL, bargs, str_size(bargs) + 1); -
kernel/generic/src/proc/thread.c
r5c03bd30 rd314571 48 48 #include <synch/spinlock.h> 49 49 #include <synch/waitq.h> 50 #include <synch/syswaitq.h> 50 51 #include <cpu.h> 51 52 #include <str.h> … … 520 521 ipc_cleanup(); 521 522 futex_task_cleanup(); 523 sys_waitq_task_cleanup(); 522 524 LOG("Cleanup of task %" PRIu64 " completed.", TASK->taskid); 523 525 } -
kernel/generic/src/syscall/syscall.c
r5c03bd30 rd314571 48 48 #include <synch/futex.h> 49 49 #include <synch/smc.h> 50 #include <synch/syswaitq.h> 50 51 #include <ddi/ddi.h> 51 52 #include <ipc/event.h> … … 136 137 137 138 /* Synchronization related syscalls. */ 139 [SYS_WAITQ_CREATE] = (syshandler_t) sys_waitq_create, 140 [SYS_WAITQ_SLEEP] = (syshandler_t) sys_waitq_sleep, 141 [SYS_WAITQ_WAKEUP] = (syshandler_t) sys_waitq_wakeup, 138 142 [SYS_FUTEX_SLEEP] = (syshandler_t) sys_futex_sleep, 139 143 [SYS_FUTEX_WAKEUP] = (syshandler_t) sys_futex_wakeup,
Note:
See TracChangeset
for help on using the changeset viewer.