summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/libpthread/pthread_sys_sigsuspend.c
blob: 72cd783ae85341f919564dbcc41d3bf37d394e6d (plain)
1
2
3
4
5
6
7
8
9
10
#include <unistd.h>

#include <pthread.h>
#include "thread_internal.h"

int sigsuspend(const sigset_t *mask)
{
  __TEST_CANCEL();
  return __libc_sigsuspend(mask);
}