aboutsummaryrefslogtreecommitdiffstats
path: root/docs/featuresbyrelease
diff options
context:
space:
mode:
authorFlorin Coras <fcoras@cisco.com>2018-11-01 11:23:03 -0700
committerMarco Varlese <marco.varlese@suse.de>2018-11-02 08:06:46 +0000
commitbe72ae6149a432899698a887b1820cf5c9d9456f (patch)
treee88cc5bbbcccaee305ef21ec040a6331c643e780 /docs/featuresbyrelease
parentbf9f02cd395387bc596f1dab5e3566f6c5573eda (diff)
tcp: minimize use of tls
Also propagate tcp worker context instead of retrieving it multiple times. Change-Id: I7b273b981826b37783566d0172a64cd6957f3b33 Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'docs/featuresbyrelease')
0 files changed, 0 insertions, 0 deletions
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 */
/* SPDX-License-Identifier: BSD-3-Clause
 * Copyright(c) 2010-2014 Intel Corporation
 */
#include <stdlib.h>
#include <errno.h>

#include <rte_alarm.h>
#include <rte_common.h>
#include "eal_private.h"

int
rte_eal_alarm_init(void)
{
	return 0;
}


int
rte_eal_alarm_set(uint64_t us __rte_unused,
		rte_eal_alarm_callback cb_fn __rte_unused,
		void *cb_arg __rte_unused)
{
	return -ENOTSUP;
}

int
rte_eal_alarm_cancel(rte_eal_alarm_callback cb_fn __rte_unused,
		void *cb_arg __rte_unused)
{
	return -ENOTSUP;
}