mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 10:59:39 +00:00
16 lines
333 B
C
16 lines
333 B
C
|
#include "libcompat.h"
|
||
|
|
||
|
int
|
||
|
timer_create (clockid_t clockid CK_ATTRIBUTE_UNUSED,
|
||
|
struct sigevent *sevp CK_ATTRIBUTE_UNUSED,
|
||
|
timer_t * timerid CK_ATTRIBUTE_UNUSED)
|
||
|
{
|
||
|
/*
|
||
|
* The create function does nothing. timer_settime will use
|
||
|
* alarm to set the timer, and timer_delete will stop the
|
||
|
* alarm
|
||
|
*/
|
||
|
|
||
|
return 0;
|
||
|
}
|