Blame hurd/hurdports.c

Packit Service 82fcde
/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
Packit Service 82fcde
   This file is part of the GNU C Library.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 82fcde
   modify it under the terms of the GNU Lesser General Public
Packit Service 82fcde
   License as published by the Free Software Foundation; either
Packit Service 82fcde
   version 2.1 of the License, or (at your option) any later version.
Packit Service 82fcde
Packit Service 82fcde
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 82fcde
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 82fcde
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 82fcde
   Lesser General Public License for more details.
Packit Service 82fcde
Packit Service 82fcde
   You should have received a copy of the GNU Lesser General Public
Packit Service 82fcde
   License along with the GNU C Library; if not, see
Packit Service 82fcde
   <http://www.gnu.org/licenses/>.  */
Packit Service 82fcde
Packit Service 82fcde
#include <hurd.h>
Packit Service 82fcde
#include <hurd/port.h>
Packit Service 82fcde
Packit Service 82fcde
Packit Service 82fcde
static inline mach_port_t
Packit Service 82fcde
get (const int idx)
Packit Service 82fcde
{
Packit Service 82fcde
  mach_port_t result;
Packit Service 82fcde
  error_t err = _hurd_ports_get (idx, &result);
Packit Service 82fcde
Packit Service 82fcde
  if (err)
Packit Service 82fcde
    return __hurd_fail (err), MACH_PORT_NULL;
Packit Service 82fcde
  return result;
Packit Service 82fcde
}
Packit Service 82fcde
#define	GET(type, what, idx) \
Packit Service 82fcde
  type get##what (void) { return get (INIT_PORT_##idx); }
Packit Service 82fcde
Packit Service 82fcde
static inline int
Packit Service 82fcde
set (const int idx, mach_port_t new)
Packit Service 82fcde
{
Packit Service 82fcde
  error_t err = _hurd_ports_set (idx, new);
Packit Service 82fcde
  return err ? __hurd_fail (err) : 0;
Packit Service 82fcde
}
Packit Service 82fcde
#define SET(type, what, idx) \
Packit Service 82fcde
  int set##what (type new) { return set (INIT_PORT_##idx, new); }
Packit Service 82fcde
Packit Service 82fcde
#define	GETSET(type, what, idx) \
Packit Service 82fcde
  GET (type, what, idx) SET (type, what, idx)
Packit Service 82fcde
Packit Service 82fcde
GETSET (process_t, proc, PROC)
Packit Service 82fcde
GETSET (mach_port_t, cttyid, CTTYID)
Packit Service 82fcde
GETSET (file_t, cwdir, CWDIR)
Packit Service 82fcde
GETSET (file_t, crdir, CRDIR)
Packit Service 82fcde
GETSET (auth_t, auth, AUTH)