git: libc: Fix up compat-43 a bit.

Sascha Wildner swildner at crater.dragonflybsd.org
Sat Nov 26 07:57:23 PST 2016


commit 8289fd98f2a8587dc514cf8fe40b7b307afa80a8
Author: Sascha Wildner <saw at online.de>
Date:   Sat Nov 26 16:55:19 2016 +0100

    libc: Fix up compat-43 a bit.
    
    * Functions in libc/compat-43 aren't syscalls so move their manual
      pages to section 3.
    
    * Move the stuff that is still POSIX to libc/gen: creat, gethostid,
      getwd, killpg. compat-43 isn't the right place for them.
    
    * While here, a non-existant .PATH in compat-43/Makefile.inc.

Summary of changes:
 Makefile_upgrade.inc                              |  7 ++++
 lib/libc/compat-43/Makefile.inc                   |  9 ++---
 lib/libc/compat-43/Symbol.map                     |  9 -----
 lib/libc/compat-43/getwd.c                        | 48 -----------------------
 lib/libc/compat-43/{sigblock.2 => sigblock.3}     |  7 ++--
 lib/libc/compat-43/{sigpause.2 => sigpause.3}     |  9 ++---
 lib/libc/compat-43/{sigsetmask.2 => sigsetmask.3} | 11 +++---
 lib/libc/compat-43/{sigvec.2 => sigvec.3}         | 19 +++++----
 lib/libc/gen/Makefile.inc                         | 20 +++++-----
 lib/libc/gen/Symbol.map                           |  6 +++
 lib/libc/{compat-43/creat.2 => gen/creat.3}       |  5 +--
 lib/libc/{compat-43 => gen}/creat.c               |  0
 lib/libc/gen/getcwd.c                             | 14 ++++++-
 lib/libc/{compat-43 => gen}/gethostid.3           |  3 +-
 lib/libc/{compat-43 => gen}/gethostid.c           |  1 -
 lib/libc/{compat-43/killpg.2 => gen/killpg.3}     |  5 +--
 lib/libc/{compat-43 => gen}/killpg.c              |  1 -
 lib/libc/sys/Makefile.inc                         |  2 +-
 lib/libc/sys/kill.2                               |  9 ++---
 lib/libutil/uucplock.3                            |  4 +-
 20 files changed, 72 insertions(+), 117 deletions(-)
 delete mode 100644 lib/libc/compat-43/getwd.c
 rename lib/libc/compat-43/{sigblock.2 => sigblock.3} (94%)
 rename lib/libc/compat-43/{sigpause.2 => sigpause.3} (94%)
 rename lib/libc/compat-43/{sigsetmask.2 => sigsetmask.3} (93%)
 rename lib/libc/compat-43/{sigvec.2 => sigvec.3} (97%)
 rename lib/libc/{compat-43/creat.2 => gen/creat.3} (95%)
 rename lib/libc/{compat-43 => gen}/creat.c (100%)
 rename lib/libc/{compat-43 => gen}/gethostid.3 (96%)
 rename lib/libc/{compat-43 => gen}/gethostid.c (95%)
 rename lib/libc/{compat-43/killpg.2 => gen/killpg.3} (96%)
 rename lib/libc/{compat-43 => gen}/killpg.c (95%)

http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/8289fd98f2a8587dc514cf8fe40b7b307afa80a8


-- 
DragonFly BSD source repository


More information about the Commits mailing list