blob: 856c17237d14ea592dd2369a5a018b647814c1eb [file] [log] [blame]
Florin Corase86a8ed2018-01-05 03:20:25 -08001/*
2 *------------------------------------------------------------------
3 * svm_queue.h - shared-memory queues
4 *
5 * Copyright (c) 2009 Cisco and/or its affiliates.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *------------------------------------------------------------------
18 */
19
20#ifndef included_svm_queue_h
21#define included_svm_queue_h
22
23#include <pthread.h>
24
25typedef struct _svm_queue
26{
27 pthread_mutex_t mutex; /* 8 bytes */
28 pthread_cond_t condvar; /* 8 bytes */
29 int head;
30 int tail;
31 volatile int cursize;
32 int maxsize;
33 int elsize;
34 int consumer_pid;
35 int signal_when_queue_non_empty;
36 char data[0];
37} svm_queue_t;
38
Mohsin Kazmi3fca5672018-01-04 18:57:26 +010039typedef enum
40{
41 /**
42 * blocking call
43 */
44 SVM_Q_WAIT = 0,
45
46 /**
47 * non-blocking call
48 */
49 SVM_Q_NOWAIT,
50
51 /**
52 * blocking call, return on signal or time-out
53 */
54 SVM_Q_TIMEDWAIT,
55} svm_q_conditional_wait_t;
56
Florin Corase86a8ed2018-01-05 03:20:25 -080057svm_queue_t *svm_queue_init (int nels,
58 int elsize,
59 int consumer_pid,
60 int signal_when_queue_non_empty);
61void svm_queue_free (svm_queue_t * q);
62int svm_queue_add (svm_queue_t * q, u8 * elem, int nowait);
63int svm_queue_add2 (svm_queue_t * q, u8 * elem, u8 * elem2, int nowait);
Mohsin Kazmi3fca5672018-01-04 18:57:26 +010064int svm_queue_sub (svm_queue_t * q, u8 * elem, svm_q_conditional_wait_t cond,
65 u32 time);
Florin Corase86a8ed2018-01-05 03:20:25 -080066int svm_queue_sub2 (svm_queue_t * q, u8 * elem);
67void svm_queue_lock (svm_queue_t * q);
68void svm_queue_unlock (svm_queue_t * q);
69int svm_queue_is_full (svm_queue_t * q);
70int svm_queue_add_nolock (svm_queue_t * q, u8 * elem);
71int svm_queue_sub_raw (svm_queue_t * q, u8 * elem);
72int svm_queue_add_raw (svm_queue_t * q, u8 * elem);
73
74/*
75 * DEPRECATED please use svm_queue_t instead
76 */
77typedef svm_queue_t unix_shared_memory_queue_t;
78
79#endif /* included_svm_queue_h */
80
81/*
82 * fd.io coding-style-patch-verification: ON
83 *
84 * Local Variables:
85 * eval: (c-set-style "gnu")
86 * End:
87 */