aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/runtime/internal/syscall/errno.c
blob: 2bc59007b3112f4f2e8a68896e45976cdfe73488 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* errno.c -- functions for getting and setting errno

   Copyright 2022 The Go Authors. All rights reserved.
   Use of this source code is governed by a BSD-style
   license that can be found in the LICENSE file.  */
#include <errno.h>
#include <stdint.h>

#include "runtime.h"

/* errno is typically a macro. These functions set and get errno
   specific to the libc being used.  */

uintptr_t getErrno(void) __asm__ (GOSYM_PREFIX "runtime_1internal_1syscall.getErrno");
void setErrno(uintptr_t) __asm__ (GOSYM_PREFIX "runtime_1internal_1syscall.setErrno");

uintptr_t
getErrno(void)
{
  return (uintptr_t) errno;
}

void
setErrno(uintptr_t value)
{
  errno = (int) value;
}