repo.or.cz
/
rbx.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Re-enable spec/library for full CI runs.
[rbx.git]
/
kernel
/
bootstrap
/
sampler.rb
blob
6b90949f7c250c8a25c0b34c005b6f1fe70171de
1
class Sampler
2
3
def activate(hz)
4
Ruby.primitive :sampler_activate
5
raise PrimitiveFailure, "primitive failed"
6
end
7
8
def terminate
9
Ruby.primitive :sampler_stop
10
raise PrimitiveFailure, "primitive failed"
11
end
12
13
end