From 949ca2ccc5c972644c70238eee7d2099a3ede1f3 Mon Sep 17 00:00:00 2001 From: rpj Date: Sat, 20 Feb 1999 03:06:22 +0000 Subject: 1999-02-20 Ross Johnson * tests/mutex2.c: Test static mutex initialisation. * tests/test.h: New. Declares a table mapping error numbers to error names. --- tests/test.h | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 tests/test.h (limited to 'tests/test.h') diff --git a/tests/test.h b/tests/test.h new file mode 100644 index 0000000..0beeaab --- /dev/null +++ b/tests/test.h @@ -0,0 +1,58 @@ +/* + * test.h + * + * Useful definitions and declarations for tests. + */ + +#include + +#ifndef _PTHREAD_TEST_H_ +#define _PTHREAD_TEST_H_ + +char * error_string[] = { + "ZERO", + "EPERM", + "ENOFILE_or_ENOENT", + "ESRCH", + "EINTR", + "EIO", + "ENXIO", + "E2BIG", + "ENOEXEC", + "EBADF", + "ECHILD", + "EAGAIN", + "ENOMEM", + "EACCES", + "EFAULT", + "UNKNOWN_15", + "EBUSY", + "EEXIST", + "EXDEV", + "ENODEV", + "ENOTDIR", + "EISDIR", + "EINVAL", + "ENFILE", + "EMFILE", + "ENOTTY", + "UNKNOWN_26", + "EFBIG", + "ENOSPC", + "ESPIPE", + "EROFS", + "EMLINK", + "EPIPE", + "EDOM", + "ERANGE", + "UNKNOWN_35", + "EDEADLOCK_or_EDEADLK", + "UNKNOWN_37", + "ENAMETOOLONG", + "ENOLCK", + "ENOSYS", + "ENOTEMPTY", + "EILSEQ", +}; + +#endif -- cgit v1.2.3