Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
| 25 | typedef 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 Kazmi | 3fca567 | 2018-01-04 18:57:26 +0100 | [diff] [blame] | 39 | typedef 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 Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 57 | svm_queue_t *svm_queue_init (int nels, |
| 58 | int elsize, |
| 59 | int consumer_pid, |
| 60 | int signal_when_queue_non_empty); |
| 61 | void svm_queue_free (svm_queue_t * q); |
| 62 | int svm_queue_add (svm_queue_t * q, u8 * elem, int nowait); |
| 63 | int svm_queue_add2 (svm_queue_t * q, u8 * elem, u8 * elem2, int nowait); |
Mohsin Kazmi | 3fca567 | 2018-01-04 18:57:26 +0100 | [diff] [blame] | 64 | int svm_queue_sub (svm_queue_t * q, u8 * elem, svm_q_conditional_wait_t cond, |
| 65 | u32 time); |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 66 | int svm_queue_sub2 (svm_queue_t * q, u8 * elem); |
| 67 | void svm_queue_lock (svm_queue_t * q); |
| 68 | void svm_queue_unlock (svm_queue_t * q); |
| 69 | int svm_queue_is_full (svm_queue_t * q); |
| 70 | int svm_queue_add_nolock (svm_queue_t * q, u8 * elem); |
| 71 | int svm_queue_sub_raw (svm_queue_t * q, u8 * elem); |
Florin Coras | 3c2fed5 | 2018-07-04 04:15:05 -0700 | [diff] [blame] | 72 | |
| 73 | /** |
| 74 | * Add element to queue with mutex held |
| 75 | * @param q queue |
| 76 | * @param elem pointer element data to add |
| 77 | */ |
| 78 | void svm_queue_add_raw (svm_queue_t * q, u8 * elem); |
Florin Coras | e86a8ed | 2018-01-05 03:20:25 -0800 | [diff] [blame] | 79 | |
| 80 | /* |
| 81 | * DEPRECATED please use svm_queue_t instead |
| 82 | */ |
| 83 | typedef svm_queue_t unix_shared_memory_queue_t; |
| 84 | |
| 85 | #endif /* included_svm_queue_h */ |
| 86 | |
| 87 | /* |
| 88 | * fd.io coding-style-patch-verification: ON |
| 89 | * |
| 90 | * Local Variables: |
| 91 | * eval: (c-set-style "gnu") |
| 92 | * End: |
| 93 | */ |