bootsnap 0.3.0.pre2 → 0.3.0.pre3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/bootsnap/bootsnap.c +0 -9
- data/lib/bootsnap/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c682b1da9d9a29730bec89fff8786d01962ef3f
|
4
|
+
data.tar.gz: 94fa71106e94e83f4cad8f4f772ebe87cc5631b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 577c1df14b7df74bc5957243e4944db626857b0ad64adbf0e42a9b91a795f447ab325d2b5287a1838318e12fffec287e9605e50358b6fd9e7f9f12c4ff51d1d8
|
7
|
+
data.tar.gz: f485231e05d7a07ff037e01ef02a504c2936e11d563ee410ea44350db06d7c4299b8fb1439cc705151ec2224e3e3e8bb07d58d12bcdf50a180d8543118f456f3
|
data/ext/bootsnap/bootsnap.c
CHANGED
@@ -172,19 +172,10 @@ fnv1a_64(const char *str)
|
|
172
172
|
/*
|
173
173
|
* The idea here is that we want a cache key member that changes when the OS
|
174
174
|
* changes in such a way as to make existing compiled ISeqs unloadable.
|
175
|
-
*
|
176
|
-
* On Darwin and FreeBSD, this is the kernel version, since that tends to vary
|
177
|
-
* with whole-system upgrades. What we probably care about more is the libc
|
178
|
-
* version, which is what we explicitly ask for on linux.
|
179
|
-
* (and KERN_OSRELEASE came back empty for me one one linux box, so...?)
|
180
|
-
*
|
181
|
-
* I'm kind of guessing about the important factors here. We could probably do
|
182
|
-
* this better.
|
183
175
|
*/
|
184
176
|
static uint32_t
|
185
177
|
get_os_version(void)
|
186
178
|
{
|
187
|
-
size_t len;
|
188
179
|
uint64_t hash;
|
189
180
|
struct utsname utsname;
|
190
181
|
|
data/lib/bootsnap/version.rb
CHANGED