blob: 9df3146d346ac7f22831b029e3f14f246addc071 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _SYSDEP_CANCEL_H
#define _SYSDEP_CANCEL_H 1
#include <sysdep.h>
/* No multi-thread handling enabled. */
#define SINGLE_THREAD_P (1)
#define LIBC_CANCEL_ASYNC() 0 /* Just a dummy value. */
#define LIBC_CANCEL_RESET(val) ((void)(val)) /* Nothing, but evaluate it. */
#define LIBC_CANCEL_HANDLED() /* Nothing. */
#endif /* sysdep-cancel.h */
|