File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5
- refs/heads/try: c4c89dd68475a0f2fb227abdda854760a2cd8459
5
+ refs/heads/try: 4cc1e31f74e2714c10ca06daa7a446a32fda6b2a
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
Original file line number Diff line number Diff line change @@ -654,6 +654,13 @@ rust_dbg_lock_signal(lock_and_signal *lock) {
654
654
lock->signal ();
655
655
}
656
656
657
+ typedef void *(*dbg_callback)(void *);
658
+
659
+ extern " C" CDECL void *
660
+ rust_dbg_call (dbg_callback *cb, void *data) {
661
+ return (*cb)(data);
662
+ }
663
+
657
664
//
658
665
// Local Variables:
659
666
// mode: C++
Original file line number Diff line number Diff line change @@ -104,3 +104,4 @@ rust_dbg_lock_lock
104
104
rust_dbg_lock_unlock
105
105
rust_dbg_lock_wait
106
106
rust_dbg_lock_signal
107
+ rust_dbg_call
You can’t perform that action at this time.
0 commit comments