Changeset 0b5203b in mainline for kernel/generic/src/syscall/syscall.c


Ignore:
Timestamp:
2018-11-11T15:47:39Z (5 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8a18d5b
Parents:
9e889f6
git-author:
Jakub Jermar <jakub@…> (2018-11-10 15:05:04)
git-committer:
Jakub Jermar <jakub@…> (2018-11-11 15:47:39)
Message:

Remove futex support from kernel

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/syscall/syscall.c

    r9e889f6 r0b5203b  
    4646#include <interrupt.h>
    4747#include <ipc/sysipc.h>
    48 #include <synch/futex.h>
    4948#include <synch/smc.h>
    5049#include <synch/syswaitq.h>
     
    140139        [SYS_WAITQ_SLEEP] = (syshandler_t) sys_waitq_sleep,
    141140        [SYS_WAITQ_WAKEUP] = (syshandler_t) sys_waitq_wakeup,
    142         [SYS_FUTEX_SLEEP] = (syshandler_t) sys_futex_sleep,
    143         [SYS_FUTEX_WAKEUP] = (syshandler_t) sys_futex_wakeup,
    144141        [SYS_SMC_COHERENCE] = (syshandler_t) sys_smc_coherence,
    145142
Note: See TracChangeset for help on using the changeset viewer.