mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
22 lines
247 B
C
22 lines
247 B
C
/*
|
|
* Plan:
|
|
*
|
|
* blocking_read()
|
|
*
|
|
* select (fd);
|
|
* if (readable)
|
|
* read();
|
|
*
|
|
*
|
|
* handle SIGUSR1
|
|
* write spam to commandline given file
|
|
*
|
|
*/
|
|
|
|
|
|
int
|
|
main ()
|
|
{
|
|
return 0;
|
|
}
|