~ubuntu-branches/ubuntu/saucy/rt-tests/saucy

« back to all changes in this revision

Viewing changes to src/include/rt-utils.h

  • Committer: Package Import Robot
  • Author(s): Ricardo Salveti de Araujo
  • Date: 2012-08-20 19:08:04 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20120820190804-8v8ki5m1p6zkuc6p
Tags: 0.84-0ubuntu1
* New upstream release (LP: #1039352)
* Update to standards version 3.9.3
* Porting copyright file to match the machine-readable debian/copyright file
  standard version 1.0
* Refreshing debian/patches based on this release
* debian/patches/adding-missing-manpages.patch:
  - Adding missing manpages for signaltest and rt-migrate-test

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#ifndef __RT_UTILS_H
2
2
#define __RT_UTILS_H
3
3
 
4
 
 
5
4
#define _STR(x) #x
6
5
#define STR(x) _STR(x)
7
6
#define MAX_PATH 256
18
17
int event_enable_all(void);
19
18
int event_disable_all(void);
20
19
 
21
 
void warn(char *fmt, ...);
22
 
void fatal(char *fmt, ...);
23
 
void info(char *fmt, ...);
24
 
 
25
20
#endif  /* __RT_UTILS.H */