vote up 1 vote down star

Is there a way of getting the process id of my C++ application? I am using the Carbon framework, but not Cocoa

flag

3 Answers

vote up 2 vote down check

can you use the getpid() function found in unistd.h ?

osx reference

link|flag
vote up 2 vote down

GetProcessPID is what you need. This takes a ProcessSerialNumber, which you can obtain from GetCurrentProcess.

link|flag
vote up 1 vote down

Note that you don't actually need to call GetCurrentProcess, you can use the constant kCurrentProcess.

(But getpid is a lot less work if you're not trying to access another process's PID, anyway.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.