*
* MaOSstartup(char *path) : create working dir in "$HOME/Library/Application Support" etc.
*
- * clock_gettime() : MacOS implementation if it is not available
- * clock_nanosleep() : MacOS implementation
*/
#ifdef __APPLE__
/*
- * Replace missing library functions with inline code
+ * Some functions are possibly missing on MacOS and in this case
+ * are replaced with "static inline" functions:
+ *
+ * clock_gettime()
+ * clock_nanosleep()
*/
#ifdef __APPLE__
//
// MacOS does not have clock_nanosleep but it does have nanosleep
-// We ignores clock_id (assuming CLOCK_MONOTONIC)
+// We ignore clock_id (assuming CLOCK_MONOTONIC)
// but for the flags we allow TIMER_ABSTIME (sleep until a specific poin
// in time), for all other value we sleep for a speficic period.
//