소스 검색

Use CLOCK_MONOTONIC_RAW for the realtime PubSub example

Julius Pfrommer 5 년 전
부모
커밋
9d67ad0f19
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/pubsub_realtime/pubsub_interrupt_publish.c

+ 1 - 1
examples/pubsub_realtime/pubsub_interrupt_publish.c

@@ -20,7 +20,7 @@
 #define MAX_MEASUREMENTS         10000
 #define MILLI_AS_NANO_SECONDS    (1000 * 1000)
 #define SECONDS_AS_NANO_SECONDS  (1000 * 1000 * 1000)
-#define CLOCKID                  CLOCK_REALTIME
+#define CLOCKID                  CLOCK_MONOTONIC_RAW
 #define SIG                      SIGUSR1
 #define PUB_INTERVAL             0.25 /* Publish interval in milliseconds */
 #define DATA_SET_WRITER_ID       62541