1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

Define S_TYPEISMQ, S_TYPEISSEM, and S_TYPEISSHM.

This commit is contained in:
Ulrich Drepper
2000-06-22 17:57:18 +00:00
parent 3cfd2d07c0
commit f406c6f240

View File

@@ -138,6 +138,16 @@ __BEGIN_DECLS
# endif
#endif
/* These are from POSIX.1b. If the objects are not implemented using separate
distinct file types, the macros always will evaluate to zero. Unlike the
other S_* macros the following three take a pointer to a `struct stat'
object as the argument. */
#ifdef __USE_POSIX199309
# define S_TYPEISMQ(buf) __S_TYPEISMQ(buf)
# define S_TYPEISSEM(buf) __S_TYPEISSEM(buf)
# define S_TYPEISSHM(buf) __S_TYPEISSHM(buf)
#endif
/* Protection bits. */