blob: 89d43b7fca2ef0bcd0257f28e14396e9cbe69fca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* Copyright 2026 The FreeBSD Foundation.
*
* SPDX-License-Identifier: BSD-2-Clause
*
* This software was developed by Konstantin Belousov <kib@FreeBSD.org>
* under sponsorship from the FreeBSD Foundation.
*/
#include <sys/types.h>
#include <sys/procdesc.h>
#include "libc_private.h"
#pragma weak pdwait
int
pdwait(int fd, int *status, int options, struct __wrusage *ru,
struct __siginfo *infop)
{
return (INTERPOS_SYS(pdwait, fd, status, options, ru, infop));
}
|