I am creating a c program that is called periodically. But upon meeting some conditions it might call a functions that uses X11 to create a window. That window will listen to events hence have a loop that waits for the events. So my C program has to wait till the created window finished doing its job. How do I make my program to call the function[defined in another c file] that creates the window and exit?
UPDATE: I was thinking of creating a socket between my C cron job and the server that handle creating the window and does what is instructed by the user. A good idea?