From ad90bc1107ef9a76f4ca530cc41e86d4f352e3d9 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Mon, 26 Oct 2020 12:52:31 +0000 Subject: Change new function names to openc_*; update deps.mak --- doc/libstddjb/djbunix.html | 16 ++++++++-------- doc/upgrade.html | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'doc') diff --git a/doc/libstddjb/djbunix.html b/doc/libstddjb/djbunix.html index 0ac0a2c..9a921de 100644 --- a/doc/libstddjb/djbunix.html +++ b/doc/libstddjb/djbunix.html @@ -254,7 +254,7 @@ Returns a valid fd number if it succeeds, or -1 (and sets errno) if it fails.

- int open_readcoe (char const *file)
+ int openc_read (char const *file)
Opens file in read-only, non-blocking mode, close-on-exec. Returns a valid fd number if it succeeds, or -1 (and sets errno) if it fails.

@@ -266,7 +266,7 @@ Returns a valid fd number if it succeeds, or -1 (and sets errno) if it fails.

- int openb_readcoe (char const *file)
+ int openbc_read (char const *file)
Opens file in read-only, blocking mode, close-on-exec. Returns a valid fd number if it succeeds, or -1 (and sets errno) if it fails.

@@ -283,7 +283,7 @@ with FIFOs.

- int open_readbcoe (char const *file)
+ int openc_readb (char const *file)
Same as above, but the file is opened close-on-exec.

@@ -295,7 +295,7 @@ Returns a valid fd number if it succeeds, or -1 (and sets errno) if it fails.

- int open_exclcoe (char const *file)
+ int openc_excl (char const *file)
Opens file in write-only, non-blocking mode, close-on-exec, with the additional O_EXCL and O_CREAT flags. Returns a valid fd number if it succeeds, or -1 (and sets errno) if it fails. @@ -309,7 +309,7 @@ Returns a valid fd number if it succeeds, or -1 (and sets errno) if it fails.

- int open_appendcoe (char const *file)
+ int openc_append (char const *file)
Opens file in write-only, non-blocking mode, close-on-exec, with the additional O_APPEND and O_CREAT flags. Returns a valid fd number if it succeeds, or -1 (and sets errno) if it fails. @@ -323,7 +323,7 @@ Returns a valid fd number if it succeeds, or -1 (and sets errno) if it fails.

- int open_trunccoe (char const *file)
+ int openc_trunc (char const *file)
Opens file in write-only, non-blocking mode, close-on-exec, with the additional O_TRUNC and O_CREAT flags. Returns a valid fd number if it succeeds, or -1 (and sets errno) if it fails. @@ -337,7 +337,7 @@ Returns a valid fd number if it succeeds, or -1 (and sets errno) if it fails.

- int open_createcoe (char const *file)
+ int openc_create (char const *file)
Opens file in write-only, non-blocking mode, close-on-exec, with the additional O_CREAT flag. Returns a valid fd number if it succeeds, or -1 (and sets errno) if it fails. @@ -350,7 +350,7 @@ Returns a valid fd number if it succeeds, or -1 (and sets errno) if it fails.

- int open_writecoe (char const *file)
+ int openc_write (char const *file)
Opens file in write-only, non-blocking mode, close-on-exec. Returns a valid fd number if it succeeds, or -1 (and sets errno) if it fails.

diff --git a/doc/upgrade.html b/doc/upgrade.html index 0f1aee8..dac82ce 100644 --- a/doc/upgrade.html +++ b/doc/upgrade.html @@ -19,8 +19,8 @@

in 2.9.4.0

in 2.9.3.0

-- cgit v1.3.1