[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ircd with Sparc Ultra and Solaris



On Mon, 8 Sep 1997, Hanno Foest wrote:

> Is this problem known? Are there more elegant solutions to it than nicing
> ircd? I'd like my users to be able to connect to my server reliably.

Maybe adding some more RAM ?

-- Robert Martin-Legène (RM59), Network Manager (AS2109)

   main(){int a[2],b[2];pipe(a);pipe(b);if(fork()){dup2(a[0],0);dup2(b[1],1)
   ;}else{dup2(b[0],0);dup2(a[1],1);write(1,"R",1);}execlp("cat","cat",0);}