summaryrefslogtreecommitdiff
path: root/posix/streams-compat.c
blob: 05c8f41a1ba50833bac4bb0c6a3e2160ce03c791 (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
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
/* Compatibility symbols for the unimplemented XSI STREAMS extension.
   Copyright (C) 1998-2019 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C 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.

   The GNU C 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 the GNU C Library; if not, see
   <https://www.gnu.org/licenses/>.  */

#include <shlib-compat.h>

#if SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_30)

# include <errno.h>
# include <fcntl.h>

struct strbuf;

int
attribute_compat_text_section
fattach (int fildes, const char *path)
{
  __set_errno (ENOSYS);
  return -1;
}
compat_symbol (libc, fattach, fattach, GLIBC_2_1);

int
attribute_compat_text_section
fdetach (const char *path)
{
  __set_errno (ENOSYS);
  return -1;
}
compat_symbol (libc, fdetach, fdetach, GLIBC_2_1);


int
attribute_compat_text_section
getmsg (int fildes, struct strbuf *ctlptr, struct strbuf *dataptr, int *flagsp)
{
  __set_errno (ENOSYS);
  return -1;
}
compat_symbol (libc, getmsg, getmsg, GLIBC_2_1);

int
attribute_compat_text_section
getpmsg (int fildes, struct strbuf *ctlptr, struct strbuf *dataptr, int *bandp,
	 int *flagsp)
{
  __set_errno (ENOSYS);
  return -1;
}
compat_symbol (libc, getpmsg, getpmsg, GLIBC_2_1);

int
attribute_compat_text_section
isastream (int fildes)
{
  /* In general we do not have a STREAMS implementation and therefore
     return 0.  But for invalid file descriptors we have to return an
     error.  */
  if (__fcntl (fildes, F_GETFD) < 0)
    return -1;

  /* No STREAM.  */
  return 0;
}
compat_symbol (libc, isastream, isastream, GLIBC_2_1);

int
attribute_compat_text_section
putmsg (int fildes, const struct strbuf *ctlptr, const struct strbuf *dataptr,
	int flags)
{
  __set_errno (ENOSYS);
  return -1;
}
compat_symbol (libc, putmsg, putmsg, GLIBC_2_1);

int
attribute_compat_text_section
putpmsg (int fildes, const struct strbuf *ctlptr, const struct strbuf *dataptr,
	 int band, int flags)
{
  __set_errno (ENOSYS);
  return -1;
}
compat_symbol (libc, putpmsg, putpmsg, GLIBC_2_1);

#endif /* SHLIB_COMPAT */