| author | wenzelm |
| Sat, 02 Apr 2016 20:23:51 +0200 | |
| changeset 62817 | 744bfd770123 |
| parent 62630 | bc772694cfbd |
| child 62825 | e6e80a8bf624 |
| permissions | -rw-r--r-- |
|
62508
d0b68218ea55
discontinued RAW session: bootstrap directly from isabelle_process RAW_ML_SYSTEM;
wenzelm
parents:
62468
diff
changeset
|
1 |
(* Title: Pure/ML/ml_heap.ML |
| 62467 | 2 |
Author: Makarius |
3 |
||
4 |
ML heap operations. |
|
5 |
*) |
|
6 |
||
7 |
signature ML_HEAP = |
|
8 |
sig |
|
9 |
val share_common_data: unit -> unit |
|
10 |
end; |
|
11 |
||
12 |
structure ML_Heap: ML_HEAP = |
|
13 |
struct |
|
14 |
fun share_common_data () = PolyML.shareCommonData PolyML.rootFunction; |
|
15 |
end; |