int backtrace(void **buffer, int size)
{
void *addr = __builtin_return_address(0);
+ (void)buffer; (void)size;
errmsg("backtrace() is not implemented. Called from %p", addr);
return 0;
char **backtrace_symbols(void *const *buffer, int size)
{
+ (void)buffer; (void)size;
errmsg("backtrace_symbols() is not implemented");
return NULL;
}
void backtrace_symbols_fd(void *const *buffer, int size, int fd)
{
+ (void)buffer; (void)size; (void)fd;
errmsg("backtrace_symbols_fd() is not implemented");
}
#endif /* !HAVE_EXECINFO_H */
char tmpBuf[200];
/* Note sigNum not used. */
+ (void)sigNum;
+
printf("Ctrl+C detected. Worst Jitter time was:%fms.\nJitterTest exiting.\n",
(float)LastMaxDiff/1000.0);
int readBytes;
char readBuf[4096];
+ (void)jitterusec;
+
if((fdSnapshot = open(fileName, O_WRONLY | O_CREAT, S_IRWXU)) <= 0)
{
fprintf(stderr, "Could not open file %s.\n", fileName);
if invoked < 1sec apart.
*/
+ (void)sigNum;
+
if (gettimeofday(&CurrTimeVal, NULL) == (int) 0) {
/*----------------------------------------------------------------