--------------------------------------------------------------------------
| 60 | |
| 61 | // -------------------------------------------------------------------------- |
| 62 | void Wait(G4int ausec) |
| 63 | { |
| 64 | struct timespec treq, trem; |
| 65 | treq.tv_sec = 0; |
| 66 | treq.tv_nsec = ausec * 1000; |
| 67 | |
| 68 | nanosleep(&treq, &trem); |
| 69 | } |
| 70 | |
| 71 | } // end of namespace |
| 72 |
no outgoing calls
no test coverage detected