libposix: implement gettimeofday

This commit is contained in:
2017-08-25 00:53:10 +02:00
parent 2409419ba2
commit bd149a18f1
7 changed files with 108 additions and 11 deletions

View File

@ -46,7 +46,7 @@ __libposix_free_wait_list(void)
{
WaitList *wl, *c;
/* free the wait list as the memory is shared */
/* free the wait list as the memory is NOT shared */
wl = *__libposix_wait_list;
if(wl != nil){
*__libposix_wait_list = nil;