Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
sdasgup3 committed Feb 20, 2019
1 parent 42cefbe commit 8e22e6f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ module COMMON-C-LIBRARY-CONFIGURATION
<open-files> .Set </open-files>

<files>
<file multiplicity="*">
//<file multiplicity="*">
<file multiplicity="*" type="Map">
<fid> .K </fid>
<uri> .K </uri>
<pos> 0 </pos>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ module COMMON-C-LIBRARY-STDLIB

rule stdlib_exit(I::Int) => exitExecution(I)

rule stdlib_abort ~> _
=>
writeFD(#stdout, "Aborted\n") ~> flush(#stdout) ~> asCInt(134)
//rule stdlib_abort ~> _
// =>
// writeFD(#stdout, "Aborted\n") ~> flush(#stdout) ~> asCInt(134)
rule <k> stdlib_abort ~> _ => writeFD(#stdout, "Aborted\n") ~> flush(#stdout) ~> asCInt(134) </k>

rule <k> stdlib_atexit(FP::VoidFunctionPointer) => success ...</k>
<atexit> (.K => callExitHandler(FP)) ...</atexit>
Expand Down

0 comments on commit 8e22e6f

Please sign in to comment.