1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2025-02-02 15:07:47 -05:00

Update: Shuffled around timing.c

This commit is contained in:
Philipp Schafft 2019-08-21 06:35:27 +00:00
parent c0704e9bc3
commit acc808f667
2 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
ACLOCAL_AMFLAGS = -I m4
SUBDIRS = avl httpp log net thread timing
SUBDIRS = avl httpp log net thread
lib_LTLIBRARIES = libigloo.la
@ -42,14 +42,14 @@ libigloo_la_SOURCES = \
src/logmsg.c \
src/buffer.c \
src/list.c \
src/reportxml.c
src/reportxml.c \
src/timing.c
libigloo_la_LIBADD = \
avl/libiceavl.la \
httpp/libicehttpp.la \
log/libicelog.la \
net/libicenet.la \
thread/libicethread.la \
timing/libicetiming.la
thread/libicethread.la
pkgconfig_DATA = igloo.pc

View File

@ -7,7 +7,7 @@
* Jack Moffitt <jack@icecast.org>,
* Ed "oddsock" Zaleski <oddsock@xiph.org>,
* Ralph Giles <giles@xiph.org>,
* Copyright (C) 2012-2018 Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>
* Copyright (C) 2012-2019 Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@ -96,7 +96,7 @@ void igloo_timing_sleep(uint64_t sleeptime)
* value. If you think differerntly, please provide references.
*/
#ifdef WIN32
Sleep(sleeptime);
Sleep(sleeptime);
#else
select(1, NULL, NULL, NULL, &sleeper);
#endif