summaryrefslogtreecommitdiffstats
path: root/darwin/DarwinProcess.h
diff options
context:
space:
mode:
Diffstat (limited to 'darwin/DarwinProcess.h')
-rw-r--r--darwin/DarwinProcess.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/darwin/DarwinProcess.h b/darwin/DarwinProcess.h
index 1d9dc34a..627a6bcb 100644
--- a/darwin/DarwinProcess.h
+++ b/darwin/DarwinProcess.h
@@ -28,17 +28,17 @@ void Process_delete(Object* cast);
bool Process_isThread(const Process* this);
-char *DarwinProcess_getCmdLine(struct kinfo_proc* k, int* basenameOffset);
+char* DarwinProcess_getCmdLine(struct kinfo_proc* k, int* basenameOffset);
-void DarwinProcess_setFromKInfoProc(Process *proc, struct kinfo_proc *ps, bool exists);
+void DarwinProcess_setFromKInfoProc(Process* proc, struct kinfo_proc* ps, bool exists);
-void DarwinProcess_setFromLibprocPidinfo(DarwinProcess *proc, DarwinProcessList *dpl);
+void DarwinProcess_setFromLibprocPidinfo(DarwinProcess* proc, DarwinProcessList* dpl);
/*
* Scan threads for process state information.
* Based on: http://stackoverflow.com/questions/6788274/ios-mac-cpu-usage-for-thread
* and https://github.com/max-horvath/htop-osx/blob/e86692e869e30b0bc7264b3675d2a4014866ef46/ProcessList.c
*/
-void DarwinProcess_scanThreads(DarwinProcess *dp);
+void DarwinProcess_scanThreads(DarwinProcess* dp);
#endif