Provide stub if RTEMS_POSIX_API is disabled.

This commit is contained in:
Ralf Corsepius
2009-12-10 07:17:48 +00:00
parent b33806656e
commit b68e2b9a0a
+4
View File
@@ -30,5 +30,9 @@ int sigprocmask(
* P1003.1c/Draft 10, p. 38 maps sigprocmask to pthread_sigmask.
*/
#if defined(RTEMS_POSIX_API)
return pthread_sigmask( how, set, oset );
#else
return -1;
#endif
}