p1003_1b.c (937d37fc6c80b2171091fc773eb40bab53d84648) | p1003_1b.c (31d1b816fe139f46083f8609c34b7d129a6e2ee0) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-4-Clause 3 * 4 * Copyright (c) 1996, 1997, 1998 5 * HD Associates, Inc. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 37 unchanged lines hidden (view full) --- 46#include <sys/lock.h> 47#include <sys/module.h> 48#include <sys/mutex.h> 49#include <sys/priv.h> 50#include <sys/proc.h> 51#include <sys/posix4.h> 52#include <sys/syscallsubr.h> 53#include <sys/sysctl.h> | 1/*- 2 * SPDX-License-Identifier: BSD-4-Clause 3 * 4 * Copyright (c) 1996, 1997, 1998 5 * HD Associates, Inc. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 37 unchanged lines hidden (view full) --- 46#include <sys/lock.h> 47#include <sys/module.h> 48#include <sys/mutex.h> 49#include <sys/priv.h> 50#include <sys/proc.h> 51#include <sys/posix4.h> 52#include <sys/syscallsubr.h> 53#include <sys/sysctl.h> |
54#include <sys/sysent.h> | |
55#include <sys/syslog.h> 56#include <sys/sysproto.h> 57 58MALLOC_DEFINE(M_P31B, "p1003.1b", "Posix 1003.1B"); 59 60/* The system calls return ENOSYS if an entry is called that is not run-time 61 * supported. I am also logging since some programs start to use this when 62 * they shouldn't. That will be removed if annoying. --- 322 unchanged lines hidden --- | 54#include <sys/syslog.h> 55#include <sys/sysproto.h> 56 57MALLOC_DEFINE(M_P31B, "p1003.1b", "Posix 1003.1B"); 58 59/* The system calls return ENOSYS if an entry is called that is not run-time 60 * supported. I am also logging since some programs start to use this when 61 * they shouldn't. That will be removed if annoying. --- 322 unchanged lines hidden --- |