mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-16 01:13:08 +09:00
30 lines
373 B
INI
30 lines
373 B
INI
|
|
; Generate a Broad Process Tree
|
||
|
|
; This generates a Tree of the form:
|
||
|
|
;
|
||
|
|
; main
|
||
|
|
; \_ c1
|
||
|
|
; | \_ c2
|
||
|
|
; | \_ c2
|
||
|
|
; | \_ c2
|
||
|
|
; | \_ c2
|
||
|
|
; | \_ c2
|
||
|
|
; |
|
||
|
|
; \_ c1
|
||
|
|
; | \_ c2
|
||
|
|
; | \_ c2
|
||
|
|
; | \_ c2
|
||
|
|
; | \_ c2
|
||
|
|
; | \_ c2
|
||
|
|
; |
|
||
|
|
; \_ ... 23 more times
|
||
|
|
|
||
|
|
[main]
|
||
|
|
children=25*c1
|
||
|
|
maxtime=10
|
||
|
|
|
||
|
|
[c1]
|
||
|
|
children=5*c2
|
||
|
|
maxtime=10
|
||
|
|
|
||
|
|
[c2]
|
||
|
|
maxtime=5
|