mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added a missing #include <linux/unistd.h> to thread.c
This commit is contained in:
parent
f993ff108b
commit
f38b7871ad
@ -1461,6 +1461,7 @@ Ville Skytt
|
||||
warnings with g++ 4.1.0
|
||||
for reporting warnings with g++ 4.1.0 regarding incrementing the 'state' variables
|
||||
in the repacker classes in remux.c
|
||||
for adding a missing #include <linux/unistd.h> to thread.c
|
||||
|
||||
Steffen Beyer <cpunk@reactor.de>
|
||||
for fixing setting the colored button help after deleting a recording in case the next
|
||||
|
1
HISTORY
1
HISTORY
@ -4140,3 +4140,4 @@ Video Disk Recorder Revision History
|
||||
- The SVDRP command LSTT now accepts the new option 'id' to have the channels
|
||||
of the timers listed with their unique channel ids instead of their numbers
|
||||
(suggested by Matthias Schniedermeyer).
|
||||
- Added a missing #include <linux/unistd.h> to thread.c (thanks to Ville Skyttä).
|
||||
|
3
thread.c
3
thread.c
@ -4,11 +4,12 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: thread.c 1.50 2006/01/04 15:01:22 kls Exp $
|
||||
* $Id: thread.c 1.51 2006/01/08 16:03:56 kls Exp $
|
||||
*/
|
||||
|
||||
#include "thread.h"
|
||||
#include <errno.h>
|
||||
#include <linux/unistd.h>
|
||||
#include <malloc.h>
|
||||
#include <stdarg.h>
|
||||
#include <sys/resource.h>
|
||||
|
Loading…
Reference in New Issue
Block a user