blob: 01022ee623468a7d831053c4e7728f4616ad6ea3 (
plain)
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
40
41
|
deffs REGRESSFS
device master { }
attach master at root
define hook { }
device parentii: hook
attach parentii at master
device parenti: hook
attach parenti at master
device child
attach child at hook
device looper { }
attach looper at master with looper_master
attach looper at looper with looper_looper
device loopchild { }
attach loopchild at looper
device loopbaby
attach loopbaby at loopchild
defpseudo pseudodev: hook
define a
file a.c a
define b: a
file b.c b
define c: b
file c.c c
define i {}
device d: i
attach d at root
file d.c d
|