summaryrefslogtreecommitdiffstats
path: root/src/vlibmemory/memory_client.c
AgeCommit message (Expand)AuthorFilesLines
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
: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
# Copyright (c) 2017 Cisco Systems, Inc.
# 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.

vppplugins_LTLIBRARIES += memif_plugin.la
vppapitestplugins_LTLIBRARIES += memif_test_plugin.la

memif_plugin_la_LIBADD =
memif_plugin_la_SOURCES = memif/memif.c   \
	memif/memif_api.c                 \
	memif/cli.c                       \
	memif/node.c                      \
	memif/device.c                    \
	memif/socket.c                    \
	memif/memif_plugin.api.h

memif_test_plugin_la_SOURCES = \
  memif/memif_test.c memif/memif_plugin.api.h

noinst_HEADERS += memif/memif.h

nobase_apiinclude_HEADERS +=              \
		  memif/memif_all_api_h.h \
		  memif/memif_msg_enum.h  \
		  memif/memif.api.h

API_FILES += memif/memif.api

if CPU_X86_64
memif_multiversioning_files = 					\
	memif/node.c						\
	memif/device.c

if CC_SUPPORTS_AVX2
###############################################################
# AVX2
###############################################################
libmemif_plugin_avx2_la_SOURCES = $(memif_multiversioning_files)
libmemif_plugin_avx2_la_CFLAGS =				\
	$(AM_CFLAGS)  @CPU_AVX2_FLAGS@				\
	-DCLIB_MULTIARCH_VARIANT=avx2
noinst_LTLIBRARIES += libmemif_plugin_avx2.la
memif_plugin_la_LIBADD += libmemif_plugin_avx2.la
endif

if CC_SUPPORTS_AVX512
###############################################################
# AVX512
###############################################################
libmemif_plugin_avx512_la_SOURCES = $(memif_multiversioning_files)
libmemif_plugin_avx512_la_CFLAGS =				\
	$(AM_CFLAGS) @CPU_AVX512_FLAGS@				\
	-DCLIB_MULTIARCH_VARIANT=avx512
noinst_LTLIBRARIES += libmemif_plugin_avx512.la
memif_plugin_la_LIBADD += libmemif_plugin_avx512.la
endif
endif

# vi:syntax=automake