I'm working on a small application and I need to find the PID of a process given the X11 window ID of its main window or child windows. I saw examples for doing such a conversion using _NET_WM_PID, but I cannot figure out how to do it without using it. The reason for not using _NET_WM_PID is that it's not implemented in all the available window managers and my application needs to work on any one of them (or at least on most of them). Could somebody help me please and give me some suggestion/directions on how to solve this issue? Thank you!

link|improve this question

See also What process created this X11 window? at Unix Stack Exchange. Note that _NET_WM_PID is set by the application, not by the window manager. – Gilles Jan 8 '11 at 12:34
feedback

1 Answer

up vote 5 down vote accepted

In general, it's not possible to find out the PID of a process that created a window. It may be that the process is running remotely on a machine, and it may be that the machine doesn't even have the notion of processes and PIDs.

If you don't trust anybody stored this information when the client was originally created, you will need to trace the connections yourself. Find out what kind of connection (socket etc) the client was using, find out where that connection ends, and find out which process holds that end. How to do that (and whether it is possible at all) is highly operating system dependent.

link|improve this answer
I see that the only way to solve it is using NET_WM_PID. In this case how can I detect if NET_WM_PID is available? – crazybyte Jul 15 '09 at 14:51
1  
In what programming environment? "xprop -id wid _NET_WM_PID" should do. – Martin v. Löwis Jul 15 '09 at 18:21
Thank you for your reply. I'm using C and I managed to solve the availability issue. The XGetWindowProperty which is used to read the NET_WM_PID property returns None if the property isn't available. – crazybyte Jul 15 '09 at 19:43
feedback

Your Answer

 
or
required, but never shown

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