Make sure solaris has _POSIX_PTHREAD_SEMANTICS defined

This commit is contained in:
Doug MacEachern 2007-02-07 16:32:36 +00:00
parent 1c8433cd7d
commit 3f94d624b1
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,13 @@
2007-02-07 Doug MacEachern <dougm@hyperic.com>
* Make sure solaris has _POSIX_PTHREAD_SEMANTICS defined
Submitted by: Jan Kneschke <jan.kneschke@mysql.com>
2007-02-06 Doug MacEachern <dougm@hyperic.com>
* Fix possible overflow in FreeBSD cpu_get impl
Submitted by: Jan Kneschke <jan.kneschke@mysql.com>
2007-02-02 Doug MacEachern <dougm@hyperic.net>
* [SIGAR-40] Change win32 file_system_list to ignore removable disks

View File

@ -19,6 +19,10 @@
#ifndef SIGAR_OS_H
#define SIGAR_OS_H
#ifndef _POSIX_PTHREAD_SEMANTICS
#define _POSIX_PTHREAD_SEMANTICS
#endif
typedef unsigned long long int u_int64_t;
#include <ctype.h>