(file) Return to process.h CVS log (file) (dir) Up to [OMI] / omi / pal

File: [OMI] / omi / pal / process.h (download)
Revision: 1.1, Mon Apr 20 17:19:55 2015 UTC (9 years ago) by krisbash
Branch: MAIN
CVS Tags: OMI_1_0_8_2, OMI_1_0_8_1, HEAD
OMI 1.0.8-1

#ifndef _pal_process_h
#define _pal_process_h

#include "palcommon.h"
#ifndef _MSC_VER
#include <sys/types.h>
#include <unistd.h>
#endif

PAL_BEGIN_EXTERNC

PAL_INLINE PAL_Uint32 Process_ID()
{
#ifdef _MSC_VER
    return GetCurrentProcessId();
#else
    return (PAL_Uint32)getpid();
#endif
}

PAL_END_EXTERNC

#endif /* _pal_process_h */

ViewCVS 0.9.2