void u_sleep(int sec, int usec)
{
struct timeval tv;
tv.tv_sec = sec;
tv.tv_usec = usec;
select(0, 0, 0, 0, &tv);
}
'소프트웨어개발' 카테고리의 다른 글
[ Linux/C/C++] df명령, FileSystem 용량 (0) | 2016.01.05 |
---|---|
[ WIN32 ] Windows Sockett sample code (0) | 2016.01.05 |
[ C ] 전처리문 (#define, #if, #ifdef, #ifndef, #defined, .. ) (0) | 2016.01.05 |
[ C ] 소스 IPC_spectrum.c (0) | 2014.08.23 |
Praat (0) | 2014.08.23 |
댓글