blob: 5fd981e0851a530ceb0b3d401782b34a423c1b24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/* Copyright (c) 2001, Stanford University
* All rights reserved
*
* See the file LICENSE.txt for information on redistributing this software.
*/
#ifndef CR_PROCESS_H
#define CR_PROCESS_H
#ifdef WINDOWS
#define WIN32_LEAN_AND_MEAN
# ifdef VBOX
# include <iprt/win/windows.h>
# else
#include <windows.h>
# endif
#endif
#include <iprt/cdefs.h>
#ifdef __cplusplus
extern "C" {
#endif
/*
* Process ID type
*/
#ifdef WINDOWS
typedef HANDLE CRpid;
#else
typedef unsigned long CRpid;
#endif
extern DECLEXPORT(void) crSleep( unsigned int seconds );
extern DECLEXPORT(void) crMsleep( unsigned int msec );
extern DECLEXPORT(CRpid) crSpawn( const char *command, const char *argv[] );
extern DECLEXPORT(void) crKill( CRpid pid );
extern DECLEXPORT(void) crGetProcName( char *name, int maxLen );
extern DECLEXPORT(void) crGetCurrentDir( char *dir, int maxLen );
extern DECLEXPORT(CRpid) crGetPID(void);
#ifdef __cplusplus
}
#endif
#endif /* CR_PROCESS_H */
|