Skip to content

Commit

Permalink
Remove generated folder before globbing source files for clog (micros…
Browse files Browse the repository at this point in the history
  • Loading branch information
thhous-msft authored Jul 26, 2021
1 parent a3d98d6 commit 74b43cd
Show file tree
Hide file tree
Showing 277 changed files with 10 additions and 386 deletions.
15 changes: 10 additions & 5 deletions scripts/update-sidecar.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ class SimpleStringComparer:Collections.Generic.IComparer[string] {
$RootDir = Split-Path $PSScriptRoot -Parent
$SrcDir = Join-Path $RootDir "src"

$OutputDir = Join-Path $RootDir "src" "generated"
if (Test-Path $OutputDir) {
Remove-Item $OutputDir -Recurse -Force -Exclude 'CMakeLists.txt'
}

$Files = [System.Collections.Generic.List[string]](Get-ChildItem -Path "$SrcDir\*" -Recurse -Include *.c,*.h,*.cpp,*.hpp -File)
$Files.Sort([SimpleStringComparer]::new())

Expand All @@ -26,10 +31,6 @@ $ConfigFile = Join-Path $SrcDir "manifest" "msquic.clog_config"

$TmpOutputDir = Join-Path $RootDir "build" "tmp"

$OutputDir = Join-Path $RootDir "src" "generated"
if (Test-Path $OutputDir) {
Remove-Item $OutputDir -Recurse -Force
}
New-Item -Path $OutputDir -ItemType Directory -Force | Out-Null

Remove-Item $Sidecar -Force -ErrorAction Ignore | Out-Null
Expand All @@ -53,5 +54,9 @@ foreach ($File in $Files) {
$GenFiles = Get-ChildItem -Path "$OutputDir\*" -Recurse -File
$ToRemovePath = "$OutputDir\linux\"
foreach ($File in $GenFiles) {
((Get-Content -path $File -Raw).Replace($ToRemovePath, "")) | Set-Content -Path $File
((Get-Content -path $File -Raw).Replace($ToRemovePath, "")) | Set-Content -Path $File -NoNewline
}
foreach ($File in $GenFiles) {
$Content = Get-Content -path $File | Where-Object {$_ -notmatch "// CLOG generated "}
$Content | Set-Content -Path $File
}
1 change: 0 additions & 1 deletion src/generated/common/CLog.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,3 @@ function(CLOG_GENERATE_TARGET)

# message(STATUS "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^")
endfunction()

1 change: 0 additions & 1 deletion src/generated/linux/ApiTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_ApiTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/BasicTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_BasicTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/CryptTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_CryptTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/DataPathTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_DataPathTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/DataTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_DataTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/DatagramTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_DatagramTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/DrillDescriptor.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_DrillDescriptor.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/EventTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_EventTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/FrameTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_FrameTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/HandshakeTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_HandshakeTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/HpsClient.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_HpsClient.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/MtuTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_MtuTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/PacketNumberTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_PacketNumberTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/PartitionTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_PartitionTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/PathTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_PathTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/PerfHelpers.h.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_PerfHelpers.h.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/PerfServer.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_PerfServer.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/PlatformTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_PlatformTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/QuicDrill.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_QuicDrill.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/RangeTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_RangeTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/RpsClient.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_RpsClient.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/SecNetPerfMain.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_SecNetPerfMain.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/SpinFrame.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_SpinFrame.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/StorageTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_StorageTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/Tcp.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -368,4 +368,3 @@ tracepoint(CLOG_TCP_CPP, PerfTcpAppClose , arg2);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_Tcp.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/Tcp.cpp.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -339,4 +339,3 @@ TRACEPOINT_EVENT(CLOG_TCP_CPP, PerfTcpAppClose,
ctf_integer_hex(uint64_t, arg2, arg2)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/TestConnection.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,3 @@ tracepoint(CLOG_TESTCONNECTION_CPP, TestIgnoreConnectionTimeout );\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_TestConnection.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/TestConnection.cpp.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,3 @@ TRACEPOINT_EVENT(CLOG_TESTCONNECTION_CPP, TestIgnoreConnectionTimeout,
TP_FIELDS(
)
)

1 change: 0 additions & 1 deletion src/generated/linux/TestHelpers.h.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -398,4 +398,3 @@ tracepoint(CLOG_TESTHELPERS_H, TestHookReplaceCreateSend , arg2, arg3);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_TestHelpers.h.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/TestHelpers.h.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -233,4 +233,3 @@ TRACEPOINT_EVENT(CLOG_TESTHELPERS_H, TestHookReplaceCreateSend,
ctf_integer(unsigned short, arg3, arg3)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/TestListener.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_TestListener.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/TestStream.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_TestStream.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/ThroughputClient.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,3 @@ tracepoint(CLOG_THROUGHPUTCLIENT_CPP, PerfRpsComplete );\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_ThroughputClient.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/ThroughputClient.cpp.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,3 @@ TRACEPOINT_EVENT(CLOG_THROUGHPUTCLIENT_CPP, PerfRpsComplete,
TP_FIELDS(
)
)

1 change: 0 additions & 1 deletion src/generated/linux/TicketTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -255,4 +255,3 @@ tracepoint(CLOG_TICKETTEST_CPP, ServerResumptionTicketDecodeFailAppDataLengthEnc
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_TicketTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/TicketTest.cpp.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -228,4 +228,3 @@ TRACEPOINT_EVENT(CLOG_TICKETTEST_CPP, ServerResumptionTicketDecodeFailAppDataLen
ctf_integer(unsigned int, arg3, arg3)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/TlsTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_TlsTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/TransportParamTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_TransportParamTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/VarIntTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_VarIntTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/VersionNegExtTest.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_VersionNegExtTest.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/ack_tracker.c.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,3 @@ tracepoint(CLOG_ACK_TRACKER_C, PacketRxMarkedForAck , arg2, arg3, arg4);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_ack_tracker.c.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/ack_tracker.c.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,3 @@ TRACEPOINT_EVENT(CLOG_ACK_TRACKER_C, PacketRxMarkedForAck,
ctf_integer(unsigned char, arg4, arg4)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/api.c.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -1115,4 +1115,3 @@ tracepoint(CLOG_API_C, ConnError , arg2, arg3);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_api.c.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/api.c.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -160,4 +160,3 @@ TRACEPOINT_EVENT(CLOG_API_C, ConnError,
ctf_string(arg3, arg3)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/appmain.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ extern "C" {
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_appmain.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/binding.c.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -588,4 +588,3 @@ tracepoint(CLOG_BINDING_C, BindingExecOper , arg2, arg3);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_binding.c.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/binding.c.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -392,4 +392,3 @@ TRACEPOINT_EVENT(CLOG_BINDING_C, BindingExecOper,
ctf_integer(unsigned int, arg3, arg3)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/cert_capi.c.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -774,4 +774,3 @@ tracepoint(CLOG_CERT_CAPI_C, LibraryError , arg2);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_cert_capi.c.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/cert_capi.c.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,3 @@ TRACEPOINT_EVENT(CLOG_CERT_CAPI_C, LibraryError,
ctf_string(arg2, arg2)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/cert_capi_openssl.c.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -320,4 +320,3 @@ tracepoint(CLOG_CERT_CAPI_OPENSSL_C, AllocFailure , arg2, arg3);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_cert_capi_openssl.c.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/cert_capi_openssl.c.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,3 @@ TRACEPOINT_EVENT(CLOG_CERT_CAPI_OPENSSL_C, AllocFailure,
ctf_integer(uint64_t, arg3, arg3)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/configuration.c.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -361,4 +361,3 @@ tracepoint(CLOG_CONFIGURATION_C, ConfigurationRundown , arg2, arg3);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_configuration.c.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/configuration.c.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -251,4 +251,3 @@ TRACEPOINT_EVENT(CLOG_CONFIGURATION_C, ConfigurationRundown,
ctf_integer_hex(uint64_t, arg3, arg3)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/congestion_control.c.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,4 +138,3 @@ tracepoint(CLOG_CONGESTION_CONTROL_C, ConnSpuriousCongestion , arg2);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_congestion_control.c.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/congestion_control.c.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,3 @@ TRACEPOINT_EVENT(CLOG_CONGESTION_CONTROL_C, ConnSpuriousCongestion,
ctf_integer_hex(uint64_t, arg2, arg2)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/connection.c.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -3989,4 +3989,3 @@ tracepoint(CLOG_CONNECTION_C, ConnLocalAddrRemoved , arg2, arg3_len, arg3);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_connection.c.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/connection.c.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -2184,4 +2184,3 @@ TRACEPOINT_EVENT(CLOG_CONNECTION_C, ConnLocalAddrRemoved,
ctf_sequence(char, arg3, arg3, unsigned int, arg3_len)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/connection.h.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -250,4 +250,3 @@ tracepoint(CLOG_CONNECTION_H, ConnSourceCidRemoved , arg2, arg3, arg4_len, arg4)
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_connection.h.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/connection.h.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -245,4 +245,3 @@ TRACEPOINT_EVENT(CLOG_CONNECTION_H, ConnSourceCidRemoved,
ctf_sequence(char, arg4, arg4, unsigned int, arg4_len)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/control.cpp.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -593,4 +593,3 @@ tracepoint(CLOG_CONTROL_CPP, LibraryError , arg2);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_control.cpp.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/control.cpp.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -241,4 +241,3 @@ TRACEPOINT_EVENT(CLOG_CONTROL_CPP, LibraryError,
ctf_string(arg2, arg2)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/crypt.c.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,3 @@ tracepoint(CLOG_CRYPT_C, AllocFailure , arg2, arg3);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_crypt.c.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/crypt.c.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,3 @@ TRACEPOINT_EVENT(CLOG_CRYPT_C, AllocFailure,
ctf_integer(uint64_t, arg3, arg3)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/crypt_bcrypt.c.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -405,4 +405,3 @@ tracepoint(CLOG_CRYPT_BCRYPT_C, AllocFailure , arg2, arg3);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_crypt_bcrypt.c.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/crypt_bcrypt.c.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,3 @@ TRACEPOINT_EVENT(CLOG_CRYPT_BCRYPT_C, AllocFailure,
ctf_integer(uint64_t, arg3, arg3)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/crypt_openssl.c.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -542,4 +542,3 @@ tracepoint(CLOG_CRYPT_OPENSSL_C, AllocFailure , arg2, arg3);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_crypt_openssl.c.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/crypt_openssl.c.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,3 @@ TRACEPOINT_EVENT(CLOG_CRYPT_OPENSSL_C, AllocFailure,
ctf_integer(uint64_t, arg3, arg3)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/crypto.c.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -1312,4 +1312,3 @@ tracepoint(CLOG_CRYPTO_C, ConnKeyPhaseChange , arg2, arg3);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_crypto.c.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/crypto.c.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -589,4 +589,3 @@ TRACEPOINT_EVENT(CLOG_CRYPTO_C, ConnKeyPhaseChange,
ctf_integer(unsigned char, arg3, arg3)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/crypto_tls.c.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -2597,4 +2597,3 @@ tracepoint(CLOG_CRYPTO_TLS_C, ConnErrorStatus , arg2, arg3, arg4);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_crypto_tls.c.clog.h.c"
#endif

1 change: 0 additions & 1 deletion src/generated/linux/crypto_tls.c.clog.h.lttng.h
Original file line number Diff line number Diff line change
Expand Up @@ -1218,4 +1218,3 @@ TRACEPOINT_EVENT(CLOG_CRYPTO_TLS_C, ConnErrorStatus,
ctf_string(arg4, arg4)
)
)

1 change: 0 additions & 1 deletion src/generated/linux/datagram.c.clog.h
Original file line number Diff line number Diff line change
Expand Up @@ -216,4 +216,3 @@ tracepoint(CLOG_DATAGRAM_C, AllocFailure , arg2, arg3);\
#ifdef CLOG_INLINE_IMPLEMENTATION
#include "quic.clog_datagram.c.clog.h.c"
#endif

Loading

0 comments on commit 74b43cd

Please sign in to comment.