/* $OpenBSD: uthread_sigaltstack.c,v 1.2 1999/11/25 07:01:44 d Exp $ */ #include #include #ifdef _THREAD_SAFE #include #include "pthread_private.h" /* * placeholder for sigaltstack XXX impl to be done */ int sigaltstack(const struct sigaltstack *ss, struct sigaltstack *oss) { errno = EINVAL; return (-1); } #endif /* _THREAD_SAFE */