Chameleon

Chameleon Svn Source Tree

Root/branches/cparm/i386/modules/include/local.h

  • Property svn:executable set to *
1/*-
2 * Copyright (c) 1990, 1993
3 *The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Chris Torek.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 4. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 *@(#)local.h8.3 (Berkeley) 7/3/94
33 * $FreeBSD: src/lib/libc/stdio/local.h,v 1.33 2008/05/05 16:03:52 jhb Exp $
34 */
35
36#include "libsaio.h"
37
38#include <sys/cdefs.h>
39//#include "xlocale_private.h"
40#include <sys/types.h>/* for off_t */
41#include <limits.h>
42
43/*
44 * Information local to this implementation of stdio,
45 * in particular, macros and private variables.
46 */
47
48extern int_sread(FILE *, char *, int);
49extern int_swrite(FILE *, char const *, int);
50extern fpos_t_sseek(FILE *, fpos_t, int);
51extern int_ftello(FILE *, fpos_t *);
52extern int_fseeko(FILE *, off_t, int, int);
53extern int__fflush(FILE *fp);
54extern void__fcloseall(void);
55//extern wint_t__fgetwc(FILE *, locale_t);
56//extern wint_t__fputwc(wchar_t, FILE *, locale_t);
57extern int__sflush(FILE *);
58extern FILE*__sfp(int);
59extern void__sfprelease(FILE *);/* mark free and update count as needed */
60extern int__slbexpand(FILE *, size_t);
61extern int__srefill(FILE *);
62extern int__srefill0(FILE *);
63extern int__srefill1(FILE *);
64extern int__sread(void *, char *, int);
65extern int__swrite(void *, char const *, int);
66extern fpos_t__sseek(void *, fpos_t, int);
67extern int__sclose(void *);
68extern void__sinit(void);
69extern void_cleanup(void);
70extern void(*__cleanup)(void);
71extern void__smakebuf(FILE *);
72extern int__swhatbuf(FILE *, size_t *, int *);
73extern int_fwalk(int (*)(FILE *));
74//extern int__svfscanf_l(FILE *, locale_t, const char *, __va_list);
75extern int__swsetup(FILE *);
76extern int__sflags(const char *, int *);
77extern int__ungetc(int, FILE *);
78//extern wint_t__ungetwc(wint_t, FILE *, locale_t);
79//extern int__vfprintf(FILE *, locale_t, const char *, __va_list);
80//extern int__vfscanf(FILE *, const char *, __va_list);
81//extern int__vfwprintf(FILE *, locale_t, const wchar_t *, __va_list);
82//extern int__vfwscanf(FILE * __restrict, locale_t, const wchar_t * __restrict,
83// __va_list);
84extern size_t__fread(void * __restrict buf, size_t size, size_t count,
85FILE * __restrict fp);
86extern int__sdidinit;
87
88#ifndef_MBSTATE_T
89#define_MBSTATE_T
90typedef__darwin_mbstate_tmbstate_t;
91#endif
92
93/* hold a buncha junk that would grow the ABI */
94struct __sFILEX {
95unsigned char*up;/* saved _p when _p is doing ungetc data */
96pthread_mutex_tfl_mutex;/* used for MT-safety */
97pthread_tfl_owner;/* current owner */
98intfl_count;/* recursive lock count */
99intorientation:2;/* orientation for fwide() */
100intcounted:1;/* stream counted against STREAM_MAX */
101mbstate_tmbstate;/* multibyte conversion state */
102};
103
104#define _up _extra->up
105#define _fl_mutex_extra->fl_mutex
106#define _fl_owner_extra->fl_owner
107#define _fl_count_extra->fl_count
108#define _orientation_extra->orientation
109#define _mbstate_extra->mbstate
110#define _counted_extra->counted
111
112#defineINITEXTRA(fp) do { \
113(fp)->_extra->up = NULL; \
114(fp)->_extra->fl_mutex = (pthread_mutex_t)PTHREAD_MUTEX_INITIALIZER; \
115(fp)->_extra->fl_owner = NULL; \
116(fp)->_extra->fl_count = 0; \
117(fp)->_extra->orientation = 0; \
118memset(&(fp)->_extra->mbstate, 0, sizeof(mbstate_t)); \
119(fp)->_extra->counted = 0; \
120} while(0);
121
122/*
123 * Prepare the given FILE for writing, and return 0 iff it
124 * can be written now. Otherwise, return EOF and set errno.
125 */
126#defineprepwrite(fp) \
127 ((((fp)->_flags & __SWR) == 0 || \
128 ((fp)->_bf._base == NULL && ((fp)->_flags & __SSTR) == 0)) && \
129 __swsetup(fp))
130
131/*
132 * Test whether the given stdio file has an active ungetc buffer;
133 * release such a buffer, without restoring ordinary unread data.
134 */
135#defineHASUB(fp) ((fp)->_ub._base != NULL)
136#defineFREEUB(fp) { \
137if ((fp)->_ub._base != (fp)->_ubuf) \
138free((char *)(fp)->_ub._base); \
139(fp)->_ub._base = NULL; \
140}
141
142/*
143 * test for an fgetln() buffer.
144 */
145#defineHASLB(fp) ((fp)->_lb._base != NULL)
146#defineFREELB(fp) { \
147free((char *)(fp)->_lb._base); \
148(fp)->_lb._base = NULL; \
149}
150
151/*
152 * Set the orientation for a stream. If o > 0, the stream has wide-
153 * orientation. If o < 0, the stream has byte-orientation.
154 */
155#defineORIENT(fp, o)do {\
156if ((fp)->_orientation == 0)\
157(fp)->_orientation = (o);\
158} while (0)
159

Archive Download this file

Revision: 2154