File: rt-app_utils.h

package info (click to toggle)
rt-app 1.0-1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 496 kB
  • sloc: ansic: 2,231; python: 260; sh: 129; makefile: 33
file content (142 lines) | stat: -rw-r--r-- 3,536 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/*
This file is part of rt-app - https://launchpad.net/rt-app
Copyright (C) 2010  Giacomo Bagnoli <g.bagnoli@asidev.com>
Copyright (C) 2014  Juri Lelli <juri.lelli@gmail.com>
Copyright (C) 2014  Vincent Guittot <vincent.guittot@linaro.org>

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
*/

#ifndef _TIMESPEC_UTILS_H_
#define _TIMESPEC_UTILS_H_

#include <time.h>
#include <stdint.h>

#include "config.h"
#include "rt-app_types.h"

#ifndef LOG_PREFIX
#define LOG_PREFIX "[rt-app] "
#endif
#ifndef LOG_LEVEL
#define LOG_LEVEL 50
#endif

#define LOG_LEVEL_DEBUG 100
#define LOG_LEVEL_INFO 75
#define LOG_LEVEL_NOTICE 50
#define LOG_LEVEL_ERROR 10
#define LOG_LEVEL_CRITICAL 10

#define BUF_SIZE 100

/* This prepend a string to a message */
#define rtapp_log_to(where, level, level_pfx, msg, args...)		\
do {									\
    if (level <= LOG_LEVEL) {						\
        fprintf(where, LOG_PREFIX level_pfx msg "\n", ##args);		\
    }									\
} while (0);

#define log_ftrace(mark_fd, msg, args...)				\
do {									\
    ftrace_write(mark_fd, msg, ##args);					\
} while (0);

#define log_notice(msg, args...)					\
do {									\
    rtapp_log_to(stderr, LOG_LEVEL_NOTICE, "<notice> ", msg, ##args);	\
} while (0);

#define log_info(msg, args...)						\
do {									\
    rtapp_log_to(stderr, LOG_LEVEL_INFO, "<info> ", msg, ##args);	\
} while (0);

#define log_error(msg, args...)						\
do {									\
    rtapp_log_to(stderr, LOG_LEVEL_ERROR, "<error> ", msg, ##args);	\
} while (0);

#define log_debug(msg, args...)						\
do {									\
    rtapp_log_to(stderr, LOG_LEVEL_DEBUG, "<debug> ", msg, ##args);	\
} while (0);

#define log_critical(msg, args...)					\
do {									\
    rtapp_log_to(stderr, LOG_LEVEL_CRITICAL, "<crit> ", msg, ##args);	\
} while (0);

unsigned long
timespec_to_usec(struct timespec *ts);

unsigned long long
timespec_to_usec_ull(struct timespec *ts);

long
timespec_to_usec_long(struct timespec *ts);

struct timespec
usec_to_timespec(unsigned long usec);

struct timespec
usec_to_timespec(unsigned long usec);

struct timespec
msec_to_timespec(unsigned int msec);

struct timespec
timespec_add(struct timespec *t1, struct timespec *t2);

struct timespec
timespec_sub(struct timespec *t1, struct timespec *t2);

int
timespec_lower(struct timespec *what, struct timespec *than);

int64_t
timespec_sub_to_ns(struct timespec *t1, struct timespec *t2);

void
log_timing(FILE *handler, timing_point_t *t);

#ifdef DLSCHED
pid_t
gettid(void);

__u64
timespec_to_nsec(struct timespec *ts);
#endif

int
policy_to_string(policy_t policy, char *policy_name);

int
string_to_policy(const char *policy_name, policy_t *policy);

int
string_to_resource(const char *name, resource_t *resource);

int
resource_to_string(resource_t resource, char *name);

void
ftrace_write(int mark_fd, const char *fmt, ...);

#endif // _TIMESPEC_UTILS_H_

/* vim: set ts=8 noexpandtab shiftwidth=8: */