From 7fbd8cdfa6579d8f0a3d9a229529fa0b2e5f914f Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sat, 28 Dec 2013 21:55:18 +0100 Subject: [PATCH] Fix Sortix::Process::GetParentProcessId forward declaration return type. --- sortix/include/sortix/kernel/process.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sortix/include/sortix/kernel/process.h b/sortix/include/sortix/kernel/process.h index a38536dd..30562a4a 100644 --- a/sortix/include/sortix/kernel/process.h +++ b/sortix/include/sortix/kernel/process.h @@ -166,7 +166,7 @@ public: bool DeliverSignal(int signum); bool DeliverGroupSignal(int signum); void OnThreadDestruction(Thread* thread); - int GetParentProcessId(); + pid_t GetParentProcessId(); void AddChildProcess(Process* child); void ScheduleDeath(); void AbortConstruction();