Chromium Code Reviews
|
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright 2009 The Native Client Authors. All rights reserved. | |
| 2 * Use of this source code is governed by a BSD-style license that can | |
| 3 * be found in the LICENSE file. */ | |
| 4 | |
| 5 #include <stdio.h> | |
| 6 #include "ruby.h" | |
| 7 #include "rubysig.h" | |
| 8 | |
| 9 typedef void (*sighandler_t)(int signum); | |
| 10 | |
| 11 sighandler_t ruby_nativethread_signal(int signum, sighandler_t handler) { | |
| 12 rb_notimplement(); | |
| 13 return 0; | |
| 14 } | |
| OLD | NEW |