> It still runs without errors, so seems fixed to, otherwise it stopped > after a few minutes. > > I wonder where those interrupted systems calls referred too btw. > Are those processes stopped or pipes closed, are they normal? > > Thanks! >
Interrupted system calls are a Unix thing that I don't handle correctly everywhere. If a process receives a signal while running a system call, then that system call may be aborted and return a special error code (EINTR). Then it's up to the user process to restart the system call. Regards, -- Benoît Minisini ------------------------------------------------------------------------------ Create and publish websites with WebMatrix Use the most popular FREE web apps or write code yourself; WebMatrix provides all the features you need to develop and publish your website. http://p.sf.net/sfu/ms-webmatrix-sf _______________________________________________ Gambas-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/gambas-user
