]>
Commit | Line | Data |
---|---|---|
224c7076 | 1 | /* |
1f2f436a | 2 | * Copyright (c) 2006, 2007, 2010 Apple Inc. All rights reserved. |
224c7076 A |
3 | * |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
6 | * This file contains Original Code and/or Modifications of Original Code | |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. Please obtain a copy of the License at | |
10 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
11 | * file. | |
12 | * | |
13 | * The Original Code and all software distributed under the License are | |
14 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
15 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
16 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
17 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
18 | * Please see the License for the specific language governing rights and | |
19 | * limitations under the License. | |
20 | * | |
21 | * @APPLE_LICENSE_HEADER_END@ | |
22 | */ | |
23 | #ifndef _LIBPROC_H_ | |
24 | #define _LIBPROC_H_ | |
25 | ||
26 | #include <sys/cdefs.h> | |
27 | #include <sys/param.h> | |
28 | #include <sys/types.h> | |
29 | #include <sys/stat.h> | |
30 | #include <sys/mount.h> | |
31 | #include <stdint.h> | |
ad3c9f2a | 32 | #include <stdbool.h> |
224c7076 A |
33 | |
34 | #include <sys/proc_info.h> | |
35 | ||
1f2f436a A |
36 | #include <Availability.h> |
37 | ||
224c7076 A |
38 | /* |
39 | * This header file contains private interfaces to obtain process information. | |
40 | * These interfaces are subject to change in future releases. | |
41 | */ | |
42 | ||
43 | /*! | |
44 | @define PROC_LISTPIDSPATH_PATH_IS_VOLUME | |
45 | @discussion This flag indicates that all processes that hold open | |
46 | file references on the volume associated with the specified | |
47 | path should be returned. | |
48 | */ | |
49 | #define PROC_LISTPIDSPATH_PATH_IS_VOLUME 1 | |
50 | ||
51 | ||
52 | /*! | |
53 | @define PROC_LISTPIDSPATH_EXCLUDE_EVTONLY | |
54 | @discussion This flag indicates that file references that were opened | |
55 | with the O_EVTONLY flag should be excluded from the matching | |
56 | criteria. | |
57 | */ | |
58 | #define PROC_LISTPIDSPATH_EXCLUDE_EVTONLY 2 | |
59 | ||
60 | __BEGIN_DECLS | |
61 | ||
224c7076 A |
62 | |
63 | /*! | |
64 | @function proc_listpidspath | |
65 | @discussion A function which will search through the current | |
66 | processes looking for open file references which match | |
67 | a specified path or volume. | |
68 | @param type types of processes to be searched (see proc_listpids) | |
69 | @param typeinfo adjunct information for type | |
70 | @param path file or volume path | |
71 | @param pathflags flags to control which files should be considered | |
72 | during the process search. | |
73 | @param buffer a C array of int-sized values to be filled with | |
74 | process identifiers that hold an open file reference | |
75 | matching the specified path or volume. Pass NULL to | |
76 | obtain the minimum buffer size needed to hold the | |
77 | currently active processes. | |
78 | @param buffersize the size (in bytes) of the provided buffer. | |
79 | @result the number of bytes of data returned in the provided buffer; | |
80 | -1 if an error was encountered; | |
81 | */ | |
82 | int proc_listpidspath(uint32_t type, | |
83 | uint32_t typeinfo, | |
84 | const char *path, | |
85 | uint32_t pathflags, | |
86 | void *buffer, | |
1f2f436a | 87 | int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0); |
224c7076 | 88 | |
1f2f436a A |
89 | int proc_listpids(uint32_t type, uint32_t typeinfo, void *buffer, int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0); |
90 | int proc_listallpids(void * buffer, int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_4_1); | |
91 | int proc_listpgrppids(pid_t pgrpid, void * buffer, int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_4_1); | |
92 | int proc_listchildpids(pid_t ppid, void * buffer, int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_4_1); | |
93 | int proc_pidinfo(int pid, int flavor, uint64_t arg, void *buffer, int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0); | |
94 | int proc_pidfdinfo(int pid, int fd, int flavor, void * buffer, int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0); | |
95 | int proc_pidfileportinfo(int pid, uint32_t fileport, int flavor, void *buffer, int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_4_3); | |
96 | int proc_name(int pid, void * buffer, uint32_t buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0); | |
97 | int proc_regionfilename(int pid, uint64_t address, void * buffer, uint32_t buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0); | |
98 | int proc_kmsgbuf(void * buffer, uint32_t buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0); | |
99 | int proc_pidpath(int pid, void * buffer, uint32_t buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0); | |
100 | int proc_libversion(int *major, int * minor) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0); | |
34e8f829 A |
101 | /* |
102 | * A process can use the following api to set its own process control | |
103 | * state on resoure starvation. The argument can have one of the PROC_SETPC_XX values | |
104 | */ | |
105 | #define PROC_SETPC_NONE 0 | |
106 | #define PROC_SETPC_THROTTLEMEM 1 | |
107 | #define PROC_SETPC_SUSPEND 2 | |
108 | #define PROC_SETPC_TERMINATE 3 | |
224c7076 | 109 | |
1f2f436a | 110 | int proc_setpcontrol(const int control) __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_3_2); |
34e8f829 | 111 | int proc_setpcontrol(const int control); |
1f2f436a | 112 | |
ad3c9f2a A |
113 | int proc_track_dirty(pid_t pid, uint32_t flags); |
114 | int proc_set_dirty(pid_t pid, bool dirty); | |
115 | int proc_get_dirty(pid_t pid, uint32_t *flags); | |
116 | ||
117 | int proc_terminate(pid_t pid, int *sig); | |
118 | ||
224c7076 A |
119 | __END_DECLS |
120 | ||
121 | #endif /*_LIBPROC_H_ */ |