/* BLURB lgpl Coda File System Release 6 Copyright (c) 1987-2003 Carnegie Mellon University Additional copyrights listed below This code is distributed "AS IS" without warranty of any kind under the terms of the GNU Library General Public Licence Version 2, as shown in the file LICENSE. The technical and financial contributors to Coda are listed in the file CREDITS. Additional copyrights none currently */ #ifndef CODA_WAIT_H #define CODA_WAIT_H #ifdef HAVE_CONFIG_H #include #endif /* Header files and macros for a common denominator in wait and friends */ #include #ifdef HAVE_SYS_RESOURCE_H #include #endif #include #ifndef WEXITSTATUS #define WEXITSTATUS(x) ((unsigned(x) >> 8) #endif #ifndef WTERMSIG #define WTERMSIG(x) ((x) & 255) #endif #ifndef WCOREDUMP #define WCOREDUMP(x) ((x) & 0200) #endif #endif /* CODA_WAIT_H */