File tree Expand file tree Collapse file tree 2 files changed +12
-38
lines changed
compiler/tests-check-prim Expand file tree Collapse file tree 2 files changed +12
-38
lines changed Original file line number Diff line number Diff line change 77* Compiler/wasm: make the type of some Wasm primitives more precise (#2100 )
88* Compiler: reference unboxing (#1958 )
99* Runtime: improved handling of NaNs (#2110 )
10+ * Lib: allow to reference values from the runtime (#2086 )
1011
1112## Bug fixes
1213* Compiler: fix purity of comparison functions (again) (#2092 )
Original file line number Diff line number Diff line change @@ -8,47 +8,35 @@ caml_int_as_pointer
88caml_jsoo_runtime
99caml_reset_afl_instrumentation
1010caml_unix_accept
11- caml_unix_alarm
1211caml_unix_bind
13- caml_unix_chown
14- caml_unix_chroot
1512caml_unix_clear_close_on_exec
1613caml_unix_clear_nonblock
1714caml_unix_connect
15+ caml_unix_create_process
1816caml_unix_dup
1917caml_unix_dup2
2018caml_unix_environment
21- caml_unix_environment_unsafe
2219caml_unix_execv
2320caml_unix_execve
2421caml_unix_execvp
2522caml_unix_execvpe
26- caml_unix_fchown
27- caml_unix_fork
23+ caml_unix_filedescr_of_channel
2824caml_unix_getaddrinfo
29- caml_unix_getgroups
3025caml_unix_gethostbyaddr
3126caml_unix_gethostbyname
3227caml_unix_gethostname
33- caml_unix_getitimer
34- caml_unix_getlogin
3528caml_unix_getnameinfo
3629caml_unix_getpeername
3730caml_unix_getpid
38- caml_unix_getppid
3931caml_unix_getprotobyname
4032caml_unix_getprotobynumber
4133caml_unix_getservbyname
4234caml_unix_getservbyport
4335caml_unix_getsockname
4436caml_unix_getsockopt
45- caml_unix_initgroups
46- caml_unix_kill
4737caml_unix_listen
4838caml_unix_lockf
4939caml_unix_map_file_bytecode
50- caml_unix_mkfifo
51- caml_unix_nice
5240caml_unix_pipe
5341caml_unix_putenv
5442caml_unix_realpath
@@ -59,30 +47,14 @@ caml_unix_send
5947caml_unix_sendto
6048caml_unix_set_close_on_exec
6149caml_unix_set_nonblock
62- caml_unix_setgid
63- caml_unix_setgroups
64- caml_unix_setitimer
65- caml_unix_setsid
6650caml_unix_setsockopt
67- caml_unix_setuid
6851caml_unix_shutdown
69- caml_unix_sigpending
70- caml_unix_sigprocmask
71- caml_unix_sigsuspend
72- caml_unix_sigwait
7352caml_unix_sleep
7453caml_unix_socket
7554caml_unix_socketpair
76- caml_unix_spawn
7755caml_unix_string_of_inet_addr
78- caml_unix_tcdrain
79- caml_unix_tcflow
80- caml_unix_tcflush
81- caml_unix_tcgetattr
82- caml_unix_tcsendbreak
83- caml_unix_tcsetattr
84- caml_unix_umask
85- caml_unix_wait
56+ caml_unix_system
57+ caml_unix_terminate_process
8658caml_unix_waitpid
8759debugger
8860
@@ -211,11 +183,12 @@ jsoo_toplevel_init_reloc
211183
212184From +unix.js:
213185caml_strerror
214- caml_unix_cleanup
215- caml_unix_filedescr_of_fd
216- caml_unix_findclose
217- caml_unix_findfirst
218- caml_unix_findnext
219- caml_unix_startup
186+ caml_unix_fchmod
187+ caml_unix_getegid
188+ caml_unix_geteuid
189+ caml_unix_getgid
190+ caml_unix_getpwnam
191+ caml_unix_getuid
192+ caml_unix_rewinddir
220193unix_error_message
221194
You can’t perform that action at this time.
0 commit comments