Update contrib.
2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 #include <sys/errno.h>
24 EXPORT_C int sigwait(const sigset_t *set, int *sig)
26 return _sigwait_r(&errno, set, sig);
29 EXPORT_C int sigtimedwait(const sigset_t *set,
30 siginfo_t *info, const struct timespec *timeout)
32 return _sigtimedwait_r(&errno,set,info,timeout);
35 EXPORT_C int sigwaitinfo(const sigset_t *set, siginfo_t *info)
37 return _sigwaitinfo_r(&errno,set,info);