Sha256: 4c1af4bf906283b872f12592caa796b521c4a1d4c44d937416bae37be19fafea

Contents?: true

Size: 388 Bytes

Versions: 10

Compression:

Stored size: 388 Bytes

Contents

#pragma once

// Used to mark symbols to be exported to the outside of the extension.
// Consider very carefully before tagging a function with this.
#define DDTRACE_EXPORT __attribute__ ((visibility ("default")))

// Used to mark function arguments that are deliberately left unused
#ifdef __GNUC__
  #define DDTRACE_UNUSED  __attribute__((unused))
#else
  #define DDTRACE_UNUSED
#endif

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
ddtrace-1.7.0 ext/ddtrace_profiling_native_extension/helpers.h
ddtrace-1.6.1 ext/ddtrace_profiling_native_extension/helpers.h
ddtrace-1.6.0 ext/ddtrace_profiling_native_extension/helpers.h
ddtrace-1.5.2 ext/ddtrace_profiling_native_extension/helpers.h
ddtrace-1.5.1 ext/ddtrace_profiling_native_extension/helpers.h
ddtrace-1.5.0 ext/ddtrace_profiling_native_extension/helpers.h
ddtrace-1.4.2 ext/ddtrace_profiling_native_extension/helpers.h
ddtrace-1.4.1 ext/ddtrace_profiling_native_extension/helpers.h
ddtrace-1.4.0 ext/ddtrace_profiling_native_extension/helpers.h
ddtrace-1.3.0 ext/ddtrace_profiling_native_extension/helpers.h