Serge S. Gulin pushed to branch wip/T24603 at Glasgow Haskell Compiler / GHC
Commits:
-
3ba16e48
by Serge S. Gulin at 2025-04-26T11:20:01+03:00
2 changed files:
- libraries/ghc-internal/src/GHC/Internal/System/Posix/Internals.hs
- testsuite/tests/ghc-api/fixed-nodes/all.T
Changes:
... | ... | @@ -556,6 +556,8 @@ foreign import javascript interruptible "h$open" |
556 | 556 | c_interruptible_open_ :: CFilePath -> CInt -> CMode -> IO CInt
|
557 | 557 | foreign import javascript interruptible "h$open"
|
558 | 558 | c_safe_open_ :: CFilePath -> CInt -> CMode -> IO CInt
|
559 | +foreign import javascript interruptible "h$openat"
|
|
560 | + c_openat :: CInt -> CFilePath -> CInt -> CMode -> IO CInt
|
|
559 | 561 | foreign import javascript interruptible "h$base_read"
|
560 | 562 | c_read :: CInt -> Ptr Word8 -> CSize -> IO CSsize
|
561 | 563 | foreign import javascript interruptible "h$base_read"
|
... | ... | @@ -2,7 +2,6 @@ test('FixedNodes', |
2 | 2 | [extra_run_opts(f'"{config.libdir}"'),
|
3 | 3 | extra_files(['T1A.hs', 'T1B.hs', 'T1C.hs']),
|
4 | 4 | wasm_broken(25953),
|
5 | - js_broken(25953)
|
|
6 | 5 | ],
|
7 | 6 | compile_and_run,
|
8 | 7 | ['-package ghc'])
|