summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--changelog.md2
-rw-r--r--lib/pure/os.nim2
-rw-r--r--lib/pure/osproc.nim2
3 files changed, 3 insertions, 3 deletions
diff --git a/changelog.md b/changelog.md
index d330819a0..b305dc3e6 100644
--- a/changelog.md
+++ b/changelog.md
@@ -91,7 +91,7 @@ proc enumToString*(enums: openArray[enum]): string =
 - Vm suport for float32<->int32 and float64<->int64 casts was added.
 - There is a new pragma block `noSideEffect` that works like
   the `gcsafe` pragma block.
-- added os.processID()
+- added os.getCurrentProcessId()
 
 ### Language changes
 
diff --git a/lib/pure/os.nim b/lib/pure/os.nim
index 1f5e63528..533d8f350 100644
--- a/lib/pure/os.nim
+++ b/lib/pure/os.nim
@@ -2419,7 +2419,7 @@ proc isHidden*(path: string): bool {.noNimScript.} =
     let fileName = lastPathPart(path)
     result = len(fileName) >= 2 and fileName[0] == '.' and fileName != ".."
 
-proc processID*(): int {.noNimScript.} =
+proc getCurrentProcessId*(): int {.noNimScript.} =
   ## return current process ID. See also ``osproc.processID(p: Process)``.
   when defined(windows):
     proc GetCurrentProcessId(): DWORD {.stdcall, dynlib: "kernel32",
diff --git a/lib/pure/osproc.nim b/lib/pure/osproc.nim
index 77b3d8dcd..b2239b9c5 100644
--- a/lib/pure/osproc.nim
+++ b/lib/pure/osproc.nim
@@ -155,7 +155,7 @@ proc running*(p: Process): bool {.rtl, extern: "nosp$1", tags: [].}
   ## Returns true iff the process `p` is still running. Returns immediately.
 
 proc processID*(p: Process): int {.rtl, extern: "nosp$1".} =
-  ## returns `p`'s process ID. See also ``os.processID()``.
+  ## returns `p`'s process ID. See also ``os.getCurrentProcessId()``.
   return p.id
 
 proc waitForExit*(p: Process, timeout: int = -1): int {.rtl,