summaryrefslogtreecommitdiff
path: root/nuttx/syscall/syscall_lookup.h
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2013-12-28 12:04:39 -0600
committerGregory Nutt <gnutt@nuttx.org>2013-12-28 12:04:39 -0600
commit557108c7011c211dddd4920457f950c9e6d33d4f (patch)
tree0555dab144a86232dc9cf027b769a7a0e6a26d2a /nuttx/syscall/syscall_lookup.h
parent212ec1530e550b6d4a4a5088dc45a8f8315e3e20 (diff)
downloadnuttx-557108c7011c211dddd4920457f950c9e6d33d4f.tar.gz
nuttx-557108c7011c211dddd4920457f950c9e6d33d4f.tar.bz2
nuttx-557108c7011c211dddd4920457f950c9e6d33d4f.zip
Add sem_timedwait to syscalls
Diffstat (limited to 'nuttx/syscall/syscall_lookup.h')
-rw-r--r--nuttx/syscall/syscall_lookup.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/nuttx/syscall/syscall_lookup.h b/nuttx/syscall/syscall_lookup.h
index 7f6da78ab..4962474c5 100644
--- a/nuttx/syscall/syscall_lookup.h
+++ b/nuttx/syscall/syscall_lookup.h
@@ -1,7 +1,7 @@
/****************************************************************************
* syscall/syscall_lookup.h
*
- * Copyright (C) 2011 Gregory Nutt. All rights reserved.
+ * Copyright (C) 2011, 2013 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* Redistribution and use in source and binary forms, with or without
@@ -60,6 +60,7 @@ SYSCALL_LOOKUP(sem_close, 1, STUB_sem_close)
SYSCALL_LOOKUP(sem_destroy, 2, STUB_sem_destroy)
SYSCALL_LOOKUP(sem_open, 6, STUB_sem_open)
SYSCALL_LOOKUP(sem_post, 1, STUB_sem_post)
+SYSCALL_LOOKUP(sem_timedwait, 2, STUB_sem_timedwait)
SYSCALL_LOOKUP(sem_trywait, 1, STUB_sem_trywait)
SYSCALL_LOOKUP(sem_unlink, 1, STUB_sem_unlink)
SYSCALL_LOOKUP(sem_wait, 1, STUB_sem_wait)