diff options
author | Nobuyoshi Nakada <[email protected]> | 2019-06-30 21:20:16 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2019-06-30 21:20:16 +0900 |
commit | 1eca2f3ca936cfdbce7b82342f5903b7d16e9bc1 (patch) | |
tree | cb07a00a24ed4090b90ec6f7f366cef44b5efc1c /test/dtrace/test_function_entry.rb | |
parent | 62e66b8e180e17475a79fbdbdc36a33e488e4fe9 (diff) |
TracePoint#__enable requires 3 arguments now
Diffstat (limited to 'test/dtrace/test_function_entry.rb')
-rw-r--r-- | test/dtrace/test_function_entry.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dtrace/test_function_entry.rb b/test/dtrace/test_function_entry.rb index 8050f91402..e2395ab15a 100644 --- a/test/dtrace/test_function_entry.rb +++ b/test/dtrace/test_function_entry.rb @@ -77,7 +77,7 @@ ruby$target:::method-return private def ruby_program <<-eoruby - TracePoint.new{}.__enable(nil, nil) + TracePoint.new{}.__enable(nil, nil, Thread.current) class Foo def foo; end end |