mirror of
https://github.com/nim-lang/Nim.git
synced 2026-04-19 14:00:35 +00:00
addQuitProc => addExitProc (#16765)
This commit is contained in:
@@ -222,8 +222,9 @@ proc enableProfiling*() =
|
||||
system.profilingRequestedHook = requestedHook
|
||||
|
||||
when declared(system.StackTrace):
|
||||
import std/exitprocs
|
||||
system.profilingRequestedHook = requestedHook
|
||||
system.profilerHook = hook
|
||||
addQuitProc(writeProfile)
|
||||
addExitProc(writeProfile)
|
||||
|
||||
{.pop.}
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
## sequences and does not depend on any other module, on Windows it uses the
|
||||
## Windows API.
|
||||
## Changing the style is permanent even after program termination! Use the
|
||||
## code ``system.addQuitProc(resetAttributes)`` to restore the defaults.
|
||||
## code `exitprocs.addExitProc(resetAttributes)` to restore the defaults.
|
||||
## Similarly, if you hide the cursor, make sure to unhide it with
|
||||
## ``showCursor`` before quitting.
|
||||
|
||||
@@ -843,7 +843,7 @@ template setBackgroundColor*(color: Color) =
|
||||
proc resetAttributes*() {.noconv.} =
|
||||
## Resets all attributes on stdout.
|
||||
## It is advisable to register this as a quit proc with
|
||||
## ``system.addQuitProc(resetAttributes)``.
|
||||
## `exitprocs.addExitProc(resetAttributes)`.
|
||||
resetAttributes(stdout)
|
||||
|
||||
proc isTrueColorSupported*(): bool =
|
||||
@@ -908,7 +908,7 @@ proc newTerminal(): owned(PTerminal) =
|
||||
when not defined(testing) and isMainModule:
|
||||
assert ansiStyleCode(styleBright) == "\e[1m"
|
||||
assert ansiStyleCode(styleStrikethrough) == "\e[9m"
|
||||
#system.addQuitProc(resetAttributes)
|
||||
# exitprocs.addExitProc(resetAttributes)
|
||||
write(stdout, "never mind")
|
||||
stdout.eraseLine()
|
||||
stdout.styledWriteLine({styleBright, styleBlink, styleUnderscore}, "styled text ")
|
||||
|
||||
@@ -1462,10 +1462,9 @@ proc addQuitProc*(quitProc: proc() {.noconv.}) {.
|
||||
## basis (that is, the last function registered is the first to be executed).
|
||||
## ``addQuitProc`` raises an EOutOfIndex exception if ``quitProc`` cannot be
|
||||
## registered.
|
||||
|
||||
# Support for addQuitProc() is done by Ansi C's facilities here.
|
||||
# In case of an unhandled exception the exit handlers should
|
||||
# not be called explicitly! The user may decide to do this manually though.
|
||||
# Support for addQuitProc() is done by Ansi C's facilities here.
|
||||
# In case of an unhandled exception the exit handlers should
|
||||
# not be called explicitly! The user may decide to do this manually though.
|
||||
|
||||
proc swap*[T](a, b: var T) {.magic: "Swap", noSideEffect.}
|
||||
## Swaps the values `a` and `b`.
|
||||
|
||||
@@ -100,6 +100,7 @@ proc logPendingOps() {.noconv.} =
|
||||
gLogger(gLog)
|
||||
gLog.count = 0
|
||||
|
||||
addQuitProc logPendingOps
|
||||
import std/exitprocs
|
||||
addExitProc logPendingOps
|
||||
|
||||
{.pop.}
|
||||
|
||||
@@ -7,6 +7,10 @@ contents thereof.
|
||||
|
||||
As said in the Olde Country, `Keepe it Gangster'."""
|
||||
|
||||
#[
|
||||
xxx remove this? seems mostly duplicate of: tests/manyloc/nake/nake.nim
|
||||
]#
|
||||
|
||||
import strutils, parseopt, tables, os
|
||||
|
||||
type
|
||||
@@ -60,7 +64,8 @@ when true:
|
||||
args.add " "
|
||||
quit(shell("nim", "c", "-r", "nakefile.nim", args))
|
||||
else:
|
||||
addQuitProc(proc() {.noconv.} =
|
||||
import std/exitprocs
|
||||
addExitProc(proc() {.noconv.} =
|
||||
var
|
||||
task: string
|
||||
printTaskList: bool
|
||||
|
||||
@@ -60,7 +60,8 @@ when true:
|
||||
args.add " "
|
||||
quit(shell("nim", "c", "-r", "nakefile.nim", args))
|
||||
else:
|
||||
addQuitProc(proc() {.noconv.} =
|
||||
import std/exitprocs
|
||||
addExitProc(proc() {.noconv.} =
|
||||
var
|
||||
task: string
|
||||
printTaskList: bool
|
||||
|
||||
@@ -5,9 +5,11 @@ just exiting...
|
||||
joinable: false
|
||||
"""
|
||||
|
||||
# Test `addQuitProc`
|
||||
# Test `addQuitProc` (now deprecated by `addExitProc`)
|
||||
|
||||
proc myExit() {.noconv.} =
|
||||
write(stdout, "just exiting...\n")
|
||||
|
||||
{.push warning[deprecated]: off.}
|
||||
addQuitProc(myExit)
|
||||
{.pop.}
|
||||
|
||||
Reference in New Issue
Block a user