Search Results

2
votes

How to do an active sleep?

What kind of a system are you on? In UNIX-like systems you can use setitimer() to send a signal to a process after a specified period of time. This is the facility you would need to implement the …
1
vote

Reading binary files, Linux Buffer Cache

It appears to take a correct amount of time the first time the file is read. On that first read, you're reading 150GB in about 2 minutes. That works out to abo …