execl doesn't work in a while(1) cicle, server side; C script
- by Possa
Hi guys, I have a problem with a little C script who should run as a server and launch a popup for every message arriving.
The execl syntax is correct because if I try a little script with
main() { execl(...); }
it works.
When I put it in a while(1) cicle it doesn't work. Everything else is working, like printf or string operation, but not the…