--- /dev/null
+/*
+ * Replace missing library functions with inline code
+ */
+
+#ifdef __APPLE__
+
+#include <time.h>
+
+#if !defined(CLOCK_REALTIME) && !defined(CLOCK_MONOTONIC)
+//
+// MacOS < 10.12 does not have clock_gettime
+//
+// Contribution from github user "ra1nb0w"
+//
+
+#define CLOCK_REALTIME 0
+#define CLOCK_MONOTONIC 6
+typedef int clockid_t;
+
+#include <sys/time.h>
+#include <mach/mach_time.h>
+
+// here to avoid problem on linking
+static inline int clock_gettime( clockid_t clk_id, struct timespec *ts )
+{
+ int ret = -1;
+ if ( ts )
+ {
+ if ( CLOCK_REALTIME == clk_id )
+ {
+ struct timeval tv;
+ ret = gettimeofday(&tv, NULL);
+ ts->tv_sec = tv.tv_sec;
+ ts->tv_nsec = tv.tv_usec * 1000;
+ }
+ else if ( CLOCK_MONOTONIC == clk_id )
+ {
+ const uint64_t t = mach_absolute_time();
+ mach_timebase_info_data_t timebase;
+ mach_timebase_info(&timebase);
+ const uint64_t tdiff = t * timebase.numer / timebase.denom;
+ ts->tv_sec = tdiff / 1000000000;
+ ts->tv_nsec = tdiff % 1000000000;
+ ret = 0;
+ }
+ }
+ return ret;
+}
+
+#endif // CLOCK_REALTIME and CLOCK_MONOTONIC
+
+//
+// MacOS does not have clock_nanosleep but it does have nanosleep
+// We ignores 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.
+//
+
+#if !defined(TIMER_ABSTIME)
+#define TIMER_ABSTIME 12345
+
+static inline int clock_nanosleep(clockid_t clock_id, int flags,
+ const struct timespec *request,
+ struct timespec *remain) {
+ struct timespec now;
+ int rc;
+
+ if (clock_id == TIMER_ABSTIME) {
+ //
+ // sleep until point in the future
+ //
+ clock_gettime(CLOCK_MONOTONIC, &now);
+ now.tv_sec = request->tv_sec - now.tv_sec;
+ now.tv_nsec= request->tv_nsec - now.tv_nsec;
+ while (now.tv_nsec < 0) {
+ now.tv_nsec += 1000000000;
+ now.tv_sec--;
+ }
+ rc=nanosleep(&now, remain);
+ } else {
+ //
+ // sleep for the given period
+ //
+ rc=nanosleep(request, remain);
+ }
+ return rc;
+}
+#endif // !defined(TIMER_ABSTIME)
+
+#endif // __APPLE__
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
+#ifdef __APPLE__
+#include "MacOS.h" // emulate clock_gettime on old MacOS systems
+#endif
#define NEED_DUMMY_AUDIO 1
int16_t ssample;
struct timespec delay;
-#ifdef __APPLE__
- struct timespec now;
-#endif
long wait;
int noiseIQpt,toneIQpt,divpt,rxptr;
double i1,q1,fac1,fac2,fac3,fac4;
delay.tv_nsec -= 1000000000;
delay.tv_sec++;
}
-#ifdef __APPLE__
- //
- // The (so-called) operating system for Mac does not have clock_nanosleep(),
- // but is has clock_gettime as well as nanosleep.
- // So, to circumvent this problem, we look at the watch and determine
- // how long we should sleep now.
- //
- clock_gettime(CLOCK_MONOTONIC, &now);
- now.tv_sec =delay.tv_sec - now.tv_sec;
- now.tv_nsec=delay.tv_nsec - now.tv_nsec;
- while (now.tv_nsec < 0) {
- now.tv_nsec += 1000000000;
- now.tv_sec--;
- }
- nanosleep(&now, NULL);
-#else
clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &delay, NULL);
-#endif
if (sock_TCP_Client > -1)
{
static int cwvox = 0;
+#ifdef __APPLE__
+#include "MacOS.h" // emulate clock_gettime on old MacOS systems
+#endif
+
#ifndef __APPLE__
// using clock_nanosleep of librt
extern int clock_nanosleep(clockid_t __clock_id, int __flags,
int kdelay;
int old_volume;
int txmode;
-#ifdef __APPLE__
- struct timespec now;
-#endif
fprintf(stderr,"keyer_thread state running= %d\n", running);
while(running) {
loop_delay.tv_sec++;
}
if (!*kdash) break;
-#ifdef __APPLE__
- clock_gettime(CLOCK_MONOTONIC, &now);
- now.tv_sec =loop_delay.tv_sec - now.tv_sec;
- now.tv_nsec=loop_delay.tv_nsec - now.tv_nsec;
- while (now.tv_nsec < 0) {
- now.tv_nsec += 1000000000;
- now.tv_sec--;
- }
- nanosleep(&now, NULL);
-#else
clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &loop_delay, NULL);
-#endif
}
// dash released.
set_keyer_out(0);
loop_delay.tv_nsec -= NSEC_PER_SEC;
loop_delay.tv_sec++;
}
-#ifdef __APPLE__
- clock_gettime(CLOCK_MONOTONIC, &now);
- now.tv_sec =loop_delay.tv_sec - now.tv_sec;
- now.tv_nsec=loop_delay.tv_nsec - now.tv_nsec;
- while (now.tv_nsec < 0) {
- now.tv_nsec += 1000000000;
- now.tv_sec--;
- }
- nanosleep(&now, NULL);
-#else
clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &loop_delay, NULL);
-#endif
set_keyer_out(0);
key_state = DOTDELAY; // add inter-character spacing of one dot length
kdelay=0;
loop_delay.tv_nsec -= NSEC_PER_SEC;
loop_delay.tv_sec++;
}
-#ifdef __APPLE__
- clock_gettime(CLOCK_MONOTONIC, &now);
- now.tv_sec =loop_delay.tv_sec - now.tv_sec;
- now.tv_nsec=loop_delay.tv_nsec - now.tv_nsec;
- while (now.tv_nsec < 0) {
- now.tv_nsec += 1000000000;
- now.tv_sec--;
- }
- nanosleep(&now, NULL);
-#else
clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &loop_delay, NULL);
-#endif
set_keyer_out(0);
key_state = DASHDELAY; // add inter-character spacing of one dot length
kdelay=0;
loop_delay.tv_nsec -= NSEC_PER_SEC;
loop_delay.tv_sec++;
}
-#ifdef __APPLE__
- clock_gettime(CLOCK_MONOTONIC, &now);
- now.tv_sec =loop_delay.tv_sec - now.tv_sec;
- now.tv_nsec=loop_delay.tv_nsec - now.tv_nsec;
- while (now.tv_nsec < 0) {
- now.tv_nsec += 1000000000;
- now.tv_sec--;
- }
- nanosleep(&now, NULL);
-#else
clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &loop_delay, NULL);
-#endif
}
//
// If we have reduced the side tone volume, restore it!
#include <string.h>
#include <stdlib.h>
#include <time.h>
+#ifdef __APPLE__
+#include "MacOS.h" // emulate clock_gettime on old MacOS systems
+#endif
+
#include "midi.h"
void NewMidiEvent(enum MIDIevent event, int channel, int note, int val) {
#include <time.h>
#include <math.h>
#include <errno.h>
+#ifdef __APPLE__
+#include "MacOS.h" // emulate clock_gettime on old MacOS systems
+#endif
#include <gtk/gtk.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <math.h>
+#ifdef __APPLE__
+#include "MacOS.h" // emulate clock_gettime on old MacOS systems
+#endif
#define EXTERN extern
#include "hpsdrsim.h"
unsigned int seed;
struct timespec delay;
-#ifdef __APPLE__
- struct timespec now;
-#endif
myddc=(int) (uintptr_t) data;
if (myddc < 0 || myddc >= NUMRECEIVERS) return NULL;
delay.tv_nsec -= 1000000000;
delay.tv_sec++;
}
-#ifdef __APPLE__
- //
- // The (so-called) operating system for Mac does not have clock_nanosleep(),
- // but is has clock_gettime as well as nanosleep.
- // So, to circumvent this problem, we look at the watch and determine
- // how long we should sleep now.
- //
- clock_gettime(CLOCK_MONOTONIC, &now);
- now.tv_sec =delay.tv_sec - now.tv_sec;
- now.tv_nsec=delay.tv_nsec - now.tv_nsec;
- while (now.tv_nsec < 0) {
- now.tv_nsec += 1000000000;
- now.tv_sec--;
- }
- nanosleep(&now, NULL);
-#else
clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &delay, NULL);
-#endif
if (sendto(sock, buffer, 1444, 0, (struct sockaddr*)&addr_new, sizeof(addr_new)) < 0) {
perror("***** ERROR: RX thread sendto");
break;
int rc;
int i;
struct timespec delay;
-#ifdef __APPLE__
- struct timespec now;
-#endif
sock=socket(AF_INET, SOCK_DGRAM, 0);
delay.tv_nsec -= 1000000000;
delay.tv_sec++;
}
-#ifdef __APPLE__
- //
- // The (so-called) operating system for Mac does not have clock_nanosleep(),
- // but is has clock_gettime as well as nanosleep.
- // So, to circumvent this problem, we look at the watch and determine
- // how long we should sleep now.
- //
- clock_gettime(CLOCK_MONOTONIC, &now);
- now.tv_sec =delay.tv_sec - now.tv_sec;
- now.tv_nsec=delay.tv_nsec - now.tv_nsec;
- while (now.tv_nsec < 0) {
- now.tv_nsec += 1000000000;
- now.tv_sec--;
- }
- nanosleep(&now, NULL);
-#else
clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &delay, NULL);
-#endif
if (sendto(sock, buffer, 132, 0, (struct sockaddr*)&addr_new, sizeof(addr_new)) < 0) {
perror("***** ERROR: Mic thread sendto");
break;