Blame view

RIOT/cpu/x86/x86_glue.c 2.8 KB
a752c7ab   elopes   add first test an...
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
  /*
   * Copyright (C) 2014  René Kijewski  <rene.kijewski@fu-berlin.de>
   *
   * This library is free software; you can redistribute it and/or
   * modify it under the terms of the GNU Lesser General Public
   * License as published by the Free Software Foundation; either
   * version 2.1 of the License, or (at your option) any later version.
   *
   * This library is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * Lesser General Public License for more details.
   *
   * You should have received a copy of the GNU Lesser General Public
   * License along with this library; if not, write to the Free Software
   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
   */
  
  /**
   * @ingroup     x86
   * @{
   *
   * @file
   * @brief       The interface between newlib and kernel functions.
   *
   * @author      René Kijewski <rene.kijewski@fu-berlin.de>
   *
   * @}
   */
  
  #include "kernel_defines.h"
  #include "cpu.h"
  #include "sched.h"
  #include "x86_uart.h"
  
  #include <signal.h>
  #include <sys/stat.h>
  #include <unistd.h>
  
  void _exit(int status)
  {
      (void) status;
      sched_task_exit();
      UNREACHABLE();
  }
  
  #ifndef MODULE_POSIX
  /* Already defined in /sys/posix/unistd.c */
  
  int close(int fildes)
  {
      /* TODO */
      (void) fildes;
      return -1;
  }
  #endif
  
  pid_t getpid(void)
  {
      return (pid_t) sched_active_pid;
  }
  
  int fstat(int fildes, struct stat *buf)
  {
      /* TODO */
      (void) fildes;
      (void) buf;
      return -1;
  }
  
  int isatty(int fildes)
  {
      /* TODO */
      (void) fildes;
      return 0; /* sic */
  }
  
  int kill(pid_t pid, int sig)
  {
      /* TODO */
      (void) pid;
      (void) sig;
      return -1;
  }
  
  off_t lseek(int fildes, off_t offset, int whence)
  {
      /* TODO */
      (void) fildes;
      (void) offset;
      (void) whence;
      return (off_t) -1;
  }
  
  ssize_t read(int fildes, void *buf, size_t nbyte)
  {
      if (nbyte == 0) {
          /* allow reading nothing from every FD ... */
          return 0;
      }
      else if (fildes == STDOUT_FILENO || fildes == STDERR_FILENO) {
          /* cannot read from STDOUT or STDERR */
          return -1;
      }
      else if (fildes == STDIN_FILENO) {
          return x86_uart_read(buf, nbyte);
      }
  
      /* TODO: find appropriate FILE */
      (void) fildes;
      (void) buf;
      (void) nbyte;
      return -1;
  }
  
  ssize_t write(int fildes, const void *buf, size_t nbyte)
  {
      if (nbyte == 0) {
          /* allow writing nothing to every FD ... */
          return 0;
      }
      else if (fildes == STDIN_FILENO) {
          /* cannot write to STDIN */
          return -1;
      }
      else if (fildes == STDOUT_FILENO || fildes == STDERR_FILENO) {
          return x86_uart_write(buf, nbyte);
      }
  
      /* TODO: find appropriate FILE */
      (void) fildes;
      (void) buf;
      (void) nbyte;
      return -1;
  }