hoopagent 1.14.9.pre.beta1 → 1.14.9.pre.beta2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/darwin22-arm64/hoopagent.h +2 -2
- data/lib/darwin22-arm64/hoopagent.so +0 -0
- data/lib/darwin22-x86_64/hoopagent.h +2 -2
- data/lib/darwin22-x86_64/hoopagent.so +0 -0
- data/lib/hoopagent.rb +2 -2
- data/lib/linux-arm64/hoopagent.h +2 -2
- data/lib/linux-arm64/hoopagent.so +0 -0
- data/lib/linux-x86_64/hoopagent.h +2 -2
- data/lib/linux-x86_64/hoopagent.so +0 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 060015b642cf48d495e8e3c6c9ed04cbf2faae84121cae06fcbcf24e009b0475
|
4
|
+
data.tar.gz: f183db901a734ce3d02e45c81543a332f1b1e6765eb43dfa7e1429b64ababe90
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e0655710fd40e7e2a946c2da295b6933f16a3a794112efc0fc98f4a325feb365dd8ba7ab3f3962586dd168297caff6dbbb3425d72819377f3abcd4535000070
|
7
|
+
data.tar.gz: 7faffd0191ad64c0f61dcbd0f2eacc14becfb2f0048ce336ac5c03713586abfbb7d8c50567ddbaaf1ceead1fb9edf7b852064118c632c03486561a7020dbf8ad
|
@@ -74,8 +74,8 @@ typedef struct { void *data; GoInt len; GoInt cap; } GoSlice;
|
|
74
74
|
extern "C" {
|
75
75
|
#endif
|
76
76
|
|
77
|
-
extern void __start_in_background();
|
78
|
-
extern void __start();
|
77
|
+
extern void __start_in_background(GoString dsn);
|
78
|
+
extern void __start(GoString dsn);
|
79
79
|
|
80
80
|
#ifdef __cplusplus
|
81
81
|
}
|
Binary file
|
@@ -74,8 +74,8 @@ typedef struct { void *data; GoInt len; GoInt cap; } GoSlice;
|
|
74
74
|
extern "C" {
|
75
75
|
#endif
|
76
76
|
|
77
|
-
extern void __start_in_background();
|
78
|
-
extern void __start();
|
77
|
+
extern void __start_in_background(GoString dsn);
|
78
|
+
extern void __start(GoString dsn);
|
79
79
|
|
80
80
|
#ifdef __cplusplus
|
81
81
|
}
|
Binary file
|
data/lib/hoopagent.rb
CHANGED
@@ -11,8 +11,8 @@ module HoopAgent
|
|
11
11
|
|
12
12
|
if File.exist?(@lib_path)
|
13
13
|
ffi_lib @lib_path
|
14
|
-
attach_function :__start, [], :void
|
15
|
-
attach_function :__start_in_background, [], :void
|
14
|
+
attach_function :__start, [:string], :void
|
15
|
+
attach_function :__start_in_background, [:string], :void
|
16
16
|
else
|
17
17
|
puts "[hoopagent] platform not supported: #{@platform}, lib_so=#{@lib_path}"
|
18
18
|
end
|
data/lib/linux-arm64/hoopagent.h
CHANGED
@@ -74,8 +74,8 @@ typedef struct { void *data; GoInt len; GoInt cap; } GoSlice;
|
|
74
74
|
extern "C" {
|
75
75
|
#endif
|
76
76
|
|
77
|
-
extern void __start_in_background();
|
78
|
-
extern void __start();
|
77
|
+
extern void __start_in_background(GoString dsn);
|
78
|
+
extern void __start(GoString dsn);
|
79
79
|
|
80
80
|
#ifdef __cplusplus
|
81
81
|
}
|
Binary file
|
@@ -74,8 +74,8 @@ typedef struct { void *data; GoInt len; GoInt cap; } GoSlice;
|
|
74
74
|
extern "C" {
|
75
75
|
#endif
|
76
76
|
|
77
|
-
extern void __start_in_background();
|
78
|
-
extern void __start();
|
77
|
+
extern void __start_in_background(GoString dsn);
|
78
|
+
extern void __start(GoString dsn);
|
79
79
|
|
80
80
|
#ifdef __cplusplus
|
81
81
|
}
|
Binary file
|