1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
/*
* Copyright (C) 2005-2008 by Pieter Palmers
*
* This file is part of FFADO
* FFADO = Free FireWire (pro-)audio drivers for Linux
*
* FFADO is based upon FreeBoB
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) version 3 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "realtimetools.h"
#include "debugmodule/debugmodule.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sched.h>
// needed for clock_nanosleep
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include <time.h>
DECLARE_GLOBAL_DEBUG_MODULE;
int set_realtime_priority(unsigned int prio)
{
debugOutput(DEBUG_LEVEL_NORMAL, "Setting thread prio to %u\n", prio);
if (prio > 0) {
struct sched_param schp;
/*
* set the process to realtime privs
*/
memset(&schp, 0, sizeof(schp));
schp.sched_priority = prio;
if (sched_setscheduler(0, SCHED_FIFO, &schp) != 0) {
perror("sched_setscheduler");
return -1;
}
} else {
struct sched_param schp;
/*
* set the process to realtime privs
*/
memset(&schp, 0, sizeof(schp));
schp.sched_priority = 0;
if (sched_setscheduler(0, SCHED_OTHER, &schp) != 0) {
perror("sched_setscheduler");
return -1;
}
}
return 0;
}
void
rt_sleep_relative_usecs(uint64_t usecs) {
//usleep(usecs);
struct timespec ts;
ts.tv_sec = usecs / (1000000LL);
ts.tv_nsec = (usecs % (1000000LL)) * 1000LL;
clock_nanosleep(CLOCK_REALTIME, 0, &ts, NULL);
}
void
rt_sleep_absolute_usecs(uint64_t wake_at_usec) {
struct timespec ts;
ts.tv_sec = wake_at_usec / (1000000LL);
ts.tv_nsec = (wake_at_usec % (1000000LL)) * 1000LL;
clock_nanosleep(CLOCK_REALTIME, TIMER_ABSTIME, &ts, NULL);
}
uint64_t rt_gettime_usecs() {
struct timespec ts;
clock_gettime(CLOCK_REALTIME, &ts);
return (uint64_t)(ts.tv_sec * 1000000LL + ts.tv_nsec / 1000LL);
}
|