stack_frames 0.1.2 → 0.1.3
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/.github/workflows/ci.yml +1 -0
- data/ext/stack_frames/buffer.c +1 -1
- data/ext/stack_frames/extconf.rb +1 -1
- data/ext/stack_frames/frame.c +1 -1
- data/ext/stack_frames/stack_frames.c +1 -1
- data/lib/stack_frames/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2238db3a0eba08ae5a8faa43f18e315b5f8be27d5758429d6c168aa2017375fc
|
4
|
+
data.tar.gz: 70ef59c3d901559ffd7137a7720b5d921b511c8a68162de29b8ff8c3fba1b8bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea5b8152852b6afade78b89c96b875d3d0585055c549ff07eb8e9d9eefe1614e71e4e69098793766397a8471a24dbd53a0c37298c02ea3fa5822b187c826c8ad
|
7
|
+
data.tar.gz: c29732481c3a7f4d198cdd26265f2b680b300d74e419f3a6c319b98420dffaf62b9750fc39c2e68ea31ef6a9d0358238ec650eb6df801082f6ffacbb4c949293
|
data/.github/workflows/ci.yml
CHANGED
data/ext/stack_frames/buffer.c
CHANGED
@@ -33,7 +33,7 @@ static size_t buffer_memsize(const void *ptr)
|
|
33
33
|
return sizeof(buffer_t);
|
34
34
|
}
|
35
35
|
|
36
|
-
const rb_data_type_t buffer_data_type = {
|
36
|
+
static const rb_data_type_t buffer_data_type = {
|
37
37
|
"stack_frames_buffer",
|
38
38
|
{ buffer_mark, buffer_free, buffer_memsize, },
|
39
39
|
NULL, NULL, RUBY_TYPED_FREE_IMMEDIATELY
|
data/ext/stack_frames/extconf.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
1
|
require 'mkmf'
|
2
|
-
$CFLAGS << ' -Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers'
|
2
|
+
$CFLAGS << ' -Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers -fvisibility=hidden'
|
3
3
|
$CFLAGS << ' -Werror' if ENV['STACK_FRAMES_DEV']
|
4
4
|
create_makefile("stack_frames/stack_frames")
|
data/ext/stack_frames/frame.c
CHANGED
@@ -19,7 +19,7 @@ static size_t frame_memsize(const void *ptr)
|
|
19
19
|
return sizeof(frame_t);
|
20
20
|
}
|
21
21
|
|
22
|
-
const rb_data_type_t frame_data_type = {
|
22
|
+
static const rb_data_type_t frame_data_type = {
|
23
23
|
"stack_frames_frame",
|
24
24
|
{ frame_mark, RUBY_DEFAULT_FREE, frame_memsize, },
|
25
25
|
NULL, NULL, RUBY_TYPED_FREE_IMMEDIATELY
|
data/lib/stack_frames/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stack_frames
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dylan Thacker-Smith
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-03-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|