]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
MacOS.c/MacOS.h: improved comment on what is going on
authorc vw <dl1ycf@darc.de>
Fri, 10 Jul 2020 12:26:12 +0000 (14:26 +0200)
committerc vw <dl1ycf@darc.de>
Fri, 10 Jul 2020 12:26:12 +0000 (14:26 +0200)
MacOS.c
MacOS.h

diff --git a/MacOS.c b/MacOS.c
index 5d3c509663a8d9cdac29768a5f32fd29fe993095..55e41769039dd789e31b9961bcae9708cfed617e 100644 (file)
--- a/MacOS.c
+++ b/MacOS.c
@@ -6,8 +6,6 @@
  *
  * 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__
diff --git a/MacOS.h b/MacOS.h
index be810a60a24de2c72303bc0bd382dde6345f5fdc..c636e9310170ee23c75ba642aa2e8b978c74016b 100644 (file)
--- a/MacOS.h
+++ b/MacOS.h
@@ -1,5 +1,9 @@
 /*
- *  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__
@@ -51,7 +55,7 @@ static inline int clock_gettime( clockid_t clk_id, struct timespec *ts )
 
 //
 // 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.
 //