aboutsummaryrefslogtreecommitdiffstats
path: root/src/vlibmemory/memory_client.c
AgeCommit message (Expand)AuthorFilesLines
2018-08-03svm: add support for eventfd signaling to queueFlorin Coras1-2/+2
2018-06-05VPP API: Memory traceOle Troan1-16/+27
2018-02-02vlmemory/svm: fix client detach from svm regionFlorin Coras1-3/+4
2018-01-25session: add support for memfd segmentsFlorin Coras1-7/+24
2018-01-22svm: queue sub: Add conditional timed waitMohsin Kazmi1-2/+2
2018-01-15svm: refactor memfd and remove ssvm_ethFlorin Coras1-0/+1
2018-01-09api: refactor vlibmemoryFlorin Coras1-35/+15
2018-01-05sock api: add first msg id retrieval functionFlorin Coras1-10/+34
2017-10-25VCL-LDPRELOAD: statically link VPP objects into libvcl_ldpreload.soDave Wallace1-6/+0
2017-10-18CSIT-844: fix binary api rx pthread heap push/popDave Barach1-3/+22
2017-10-03Repair vlib API socket serverDave Barach1-13/+52
2017-05-09Fix remaining 32-bit compile issuesDamjan Marion1-1/+1
2017-05-03A sprinkling of const in vlibmemory/api.h and friendsNeale Ranns1-7/+9
2017-04-11move binary-api client-only routines to memory_client.cDave Barach1-9/+241
2016-12-28Reorganize source tree to use single autotools instanceDamjan Marion1-0/+283
t: bold } /* Literal.Number.Integer.Long */ }
/*
 * Copyright (c) 2017 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef __included_tw_timer_1t_3w_1024sl_ov_h__
#define __included_tw_timer_1t_3w_1024sl_ov_h__

/* ... So that a client app can create multiple wheel geometries */
#undef TW_TIMER_WHEELS
#undef TW_SLOTS_PER_RING
#undef TW_RING_SHIFT
#undef TW_RING_MASK
#undef TW_TIMERS_PER_OBJECT
#undef LOG2_TW_TIMERS_PER_OBJECT
#undef TW_SUFFIX
#undef TW_OVERFLOW_VECTOR
#undef TW_FAST_WHEEL_BITMAP
#undef TW_TIMER_ALLOW_DUPLICATE_STOP
#undef TW_START_STOP_TRACE_SIZE

#define TW_TIMER_WHEELS 3
#define TW_SLOTS_PER_RING 1024
#define TW_RING_SHIFT 10
#define TW_RING_MASK (TW_SLOTS_PER_RING -1)
#define TW_TIMERS_PER_OBJECT 1
#define LOG2_TW_TIMERS_PER_OBJECT 0
#define TW_SUFFIX _1t_3w_1024sl_ov
#define TW_OVERFLOW_VECTOR 1
#define TW_FAST_WHEEL_BITMAP 1
#define TW_TIMER_ALLOW_DUPLICATE_STOP 1

#include <vppinfra/tw_timer_template.h>

#endif /* __included_tw_timer_1t_3w_1024sl_ov_h__ */

/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */