aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2016-01-31 07:36:10 +0100
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2016-01-31 07:36:10 +0100
commit8cc302e7d2fece4da7e1b9c0cd368f220b08de0a (patch)
treeb5b4a14854f47daf3ba1f12c071f319f90e3b41a
parent1ed8588d4d28d7e47e57980075675018b34f2596 (diff)
parenta478b52cb4e35e5d65db920ab9305452f09f3b8a (diff)
Merge branch 'census-placeholders' into make-ruby-installable
-rw-r--r--src/core/statistics/census_init.c73
1 files changed, 73 insertions, 0 deletions
diff --git a/src/core/statistics/census_init.c b/src/core/statistics/census_init.c
index e6306f5e6f..6959c69eaa 100644
--- a/src/core/statistics/census_init.c
+++ b/src/core/statistics/census_init.c
@@ -46,3 +46,76 @@ void census_shutdown(void) {
census_stats_store_shutdown();
census_tracing_shutdown();
}
+
+census_tag_set *census_context_tag_set(census_context *context) {
+ (void)context;
+ abort();
+}
+
+int census_get_trace_record(census_trace_record *trace_record) {
+ (void)trace_record);
+ abort();
+}
+
+void census_record_values(census_context *context, census_value *values,
+ size_t nvalues) {
+ (void)context;
+ (void)values;
+ (void)nvalues;
+ abort();
+}
+
+void census_set_rpc_client_peer(census_context *context, const char *peer) {
+ (void)context;
+ (void)peer;
+ abort();
+}
+
+void census_trace_scan_end() { abort(); }
+
+int census_trace_scan_start(int consume) {
+ (void)consume;
+ abort();
+}
+
+void census_trace_scan_end() { abort(); }
+
+const census_aggregation *census_view_aggregrations(const census_view *view) {
+ (void)view;
+ abort();
+}
+
+census_view *census_view_create(uint32_t metric_id, const census_tag_set *tags,
+ const census_aggregation *aggregations,
+ size_t naggregations) {
+ (void)metric_id;
+ (void)tags;
+ (void)census_aggregation;
+ (void)naggregations;
+ abort();
+}
+
+void census_view_delete(census_view *view) {
+ (void)view;
+ abort();
+}
+
+const census_view_data *census_view_get_data(const census_view *view) {
+ (void)view;
+ abort();
+}
+
+size_t census_view_metric(const census_view *view) {
+ (void)view;
+ abort();
+}
+
+size_t census_view_naggregations(const census_view *view) {
+ (void)view;
+ abort();
+}
+
+void census_view_reset(census_view *view) {
+ (void)view;
+ abort();
+}