Branch data Line data Source code
1 : : /***
2 : : This file is part of PulseAudio.
3 : :
4 : : PulseAudio is free software; you can redistribute it and/or modify
5 : : it under the terms of the GNU Lesser General Public License as published
6 : : by the Free Software Foundation; either version 2.1 of the License,
7 : : or (at your option) any later version.
8 : :
9 : : PulseAudio is distributed in the hope that it will be useful, but
10 : : WITHOUT ANY WARRANTY; without even the implied warranty of
11 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 : : General Public License for more details.
13 : :
14 : : You should have received a copy of the GNU Lesser General Public License
15 : : along with PulseAudio; if not, write to the Free Software
16 : : Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17 : : USA.
18 : : ***/
19 : :
20 : : #ifdef HAVE_CONFIG_H
21 : : #include <config.h>
22 : : #endif
23 : :
24 : : #include <assert.h>
25 : : #include <stdlib.h>
26 : : #include <unistd.h>
27 : :
28 : : #include <pulsecore/queue.h>
29 : : #include <pulsecore/log.h>
30 : : #include <pulsecore/macro.h>
31 : :
32 : 1 : int main(int argc, char *argv[]) {
33 : : pa_queue *q;
34 : :
35 [ - + ]: 1 : pa_assert_se(q = pa_queue_new());
36 : :
37 [ - + ]: 1 : pa_assert(pa_queue_isempty(q));
38 : :
39 : 1 : pa_queue_push(q, (void*) "eins");
40 : 1 : pa_log("%s\n", (char*) pa_queue_pop(q));
41 : :
42 [ - + ]: 1 : pa_assert(pa_queue_isempty(q));
43 : :
44 : 1 : pa_queue_push(q, (void*) "zwei");
45 : 1 : pa_queue_push(q, (void*) "drei");
46 : 1 : pa_queue_push(q, (void*) "vier");
47 : :
48 : 1 : pa_log("%s\n", (char*) pa_queue_pop(q));
49 : 1 : pa_log("%s\n", (char*) pa_queue_pop(q));
50 : :
51 : 1 : pa_queue_push(q, (void*) "fuenf");
52 : :
53 : 1 : pa_log("%s\n", (char*) pa_queue_pop(q));
54 : 1 : pa_log("%s\n", (char*) pa_queue_pop(q));
55 : :
56 [ - + ]: 1 : pa_assert(pa_queue_isempty(q));
57 : :
58 : 1 : pa_queue_push(q, (void*) "sechs");
59 : 1 : pa_queue_push(q, (void*) "sieben");
60 : :
61 : 1 : pa_queue_free(q, NULL);
62 : :
63 : : return 0;
64 : : }
|