summaryrefslogtreecommitdiff
path: root/process.h
diff options
context:
space:
mode:
Diffstat (limited to 'process.h')
-rw-r--r--process.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/process.h b/process.h
index a21fd5b..023145c 100644
--- a/process.h
+++ b/process.h
@@ -20,7 +20,7 @@ long long process_read(Process *process, char *data, size_t size);
// 0 if the process hasn't exited.
// If message is not NULL, it will be set to a description of what happened (e.g. "exited successfully")
int process_check_status(Process *process, char *message, size_t message_size);
-// kills process if still running, and frees data associated with it.
-void process_stop(Process *process);
+// kills process if still running
+void process_kill(Process *process);
#endif