a7017815646d4420a68e09f92c360d34db6e0f75
[platform/upstream/gstreamer.git] / libs / gst / check / libcheck / timer_create.c
1 #include "libcompat.h"
2
3 int
4 timer_create (clockid_t clockid CK_ATTRIBUTE_UNUSED,
5     struct sigevent *sevp CK_ATTRIBUTE_UNUSED,
6     timer_t * timerid CK_ATTRIBUTE_UNUSED)
7 {
8   /* 
9    * The create function does nothing. timer_settime will use
10    * alarm to set the timer, and timer_delete will stop the
11    * alarm
12    */
13
14   return 0;
15 }