summary refs log tree commit diff stats
path: root/lib/genode_cpp/signals.h
blob: fa3975d386c593b2d5daec200a42b3d8adbfd602 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 *
 *           Nim's Runtime Library
 *       (c) Copyright 2022 Emery Hemingway
 *
 *   See the file "copying.txt", included in this
 *   distribution, for details about the copyright.
 *
 */

#ifndef _NIM_SIGNALS_H_
#define _NIM_SIGNALS_H_

#include <libc/component.h>
#include <base/signal.h>
#include <util/reconstructible.h>

// Symbol for calling back into Nim
extern "C" void nimHandleSignal(void *arg);

namespace Nim { struct SignalHandler; }

struct Nim::SignalHandler
{
	// Pointer to the Nim handler object.
	void *arg;

	void handle_signal() {
		Libc::with_libc([this] () { nimHandleSignal(arg); }); }

	Genode::Signal_handler<SignalHandler> handler;

	SignalHandler(Genode::Entrypoint *ep, void *arg)
	: arg(arg), handler(*ep, *this, &SignalHandler::handle_signal) { }

	Genode::Signal_context_capability cap() { return handler; }
};

#endif
ss="w"> data.s2 += ord(len(rc2) == 1) selector.unregister(timer) discard selector.select(0) selector.registerTimer(t0, true, 0) # same comment as above var rc4 = selector.select(t) let t2 = 100 # this can't be too large as it'll actually wait that long: # timer_notification_test.n * t2 var rc5 = selector.select(t2) doAssert len(rc4) + len(rc5) <= 1 data.s3 += ord(len(rc4) + len(rc5) == 1) doAssert(selector.isEmpty()) selector.close() proc timerNotificationTest() = var data: TestData let n = 10 for i in 0..<n: timerNotificationTestImpl(data) doAssert data.s1 == n and data.s2 == n and data.s3 == n, $data when isMainModule: timerNotificationTest()