mozjs_sys 0.67.1

System crate for the Mozilla SpiderMonkey JavaScript engine.
; Deep Process Tree
; Should generate a process tree of the form:
;
;	main
;	 \_ c2
;	 |   \_ c5
;	 |   |   \_ c6
;	 |   |       \_ c7
;	 |   |           \_ c8
;	 |   |               \_ c1
;	 |   |                   \_ c4
;	 |   \_ c5
;	 |       \_ c6
;	 |           \_ c7
;	 |               \_ c8
;	 |                   \_ c1
;	 |                       \_ c4
;	 \_ c2
;	 |   \_ c5
;	 |   |   \_ c6
;	 |   |       \_ c7
;	 |   |           \_ c8
;	 |   |               \_ c1
;	 |   |                   \_ c4
;	 |   \_ c5
;	 |       \_ c6
;	 |           \_ c7
;	 |               \_ c8
;	 |                   \_ c1
;	 |                       \_ c4
;	 \_ c1
;	 |   \_ c4
;	 \_ c1
;	     \_ c4

[main]
children=2*c1, 2*c2
maxtime=20

[c1]
children=c4
maxtime=20

[c2]
children=2*c5
maxtime=20

[c4]
maxtime=20

[c5]
children=c6
maxtime=20

[c6]
children=c7
maxtime=20

[c7]
children=c8
maxtime=20

[c8]
children=c1
maxtime=20