Add a missing pa_xfree.
[pulseaudio.git] / src / tests / cpulimit-test.c
blobd582e9c58952ae827b5ccf7c7d0df3993c6ce707
1 /* $Id$ */
3 /***
4 This file is part of PulseAudio.
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 PulseAudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
26 #include <assert.h>
27 #include <sys/time.h>
28 #include <stdlib.h>
29 #include <stdio.h>
30 #include <signal.h>
32 #include <pulse/mainloop.h>
33 #include <pulsecore/gccmacro.h>
35 #ifdef TEST2
36 #include <pulse/mainloop-signal.h>
37 #endif
39 #include "../daemon/cpulimit.h"
41 /* A simple example for testing the cpulimit subsystem */
43 static time_t start;
45 #ifdef TEST2
47 static void func(pa_mainloop_api *m, PA_GCC_UNUSED pa_signal_event *e, PA_GCC_UNUSED int sig, PA_GCC_UNUSED void *userdata) {
48 time_t now;
49 time(&now);
51 if ((now - start) >= 30) {
52 m->quit(m, 1);
53 fprintf(stderr, "Test failed\n");
54 } else
55 raise(SIGUSR1);
58 #endif
60 int main(PA_GCC_UNUSED int argc, PA_GCC_UNUSED char *argv[]) {
61 pa_mainloop *m;
63 m = pa_mainloop_new();
64 assert(m);
66 pa_cpu_limit_init(pa_mainloop_get_api(m));
68 time(&start);
70 #ifdef TEST2
71 pa_signal_init(pa_mainloop_get_api(m));
72 pa_signal_new(SIGUSR1, func, NULL);
73 raise(SIGUSR1);
74 pa_mainloop_run(m, NULL);
75 pa_signal_done();
76 #else
77 for (;;) {
78 time_t now;
79 time(&now);
81 if ((now - start) >= 30) {
82 fprintf(stderr, "Test failed\n");
83 break;
86 #endif
88 pa_cpu_limit_done();
90 pa_mainloop_free(m);
92 return 0;