source: trunk/libs/newlib/src/newlib/libc/stdio/putc_u.c @ 450

Last change on this file since 450 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 2.6 KB
Line 
1/*
2 * Copyright (c) 1990 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms are permitted
6 * provided that the above copyright notice and this paragraph are
7 * duplicated in all such forms and that any documentation,
8 * advertising materials, and other materials related to such
9 * distribution and use acknowledge that the software was developed
10 * by the University of California, Berkeley.  The name of the
11 * University may not be used to endorse or promote products derived
12 * from this software without specific prior written permission.
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
16 */
17
18/*
19FUNCTION
20<<putc_unlocked>>---non-thread-safe version of putc (macro)
21
22INDEX
23        putc_unlocked
24INDEX
25        _putc_unlocked_r
26
27SYNOPSIS
28        #include <stdio.h>
29        int putc_unlocked(int <[ch]>, FILE *<[fp]>);
30
31        #include <stdio.h>
32        int _putc_unlocked_r(struct _reent *<[ptr]>, int <[ch]>, FILE *<[fp]>);
33
34DESCRIPTION
35<<putc_unlocked>> is a non-thread-safe version of <<putc>> declared in
36<<stdio.h>>.  <<putc_unlocked>> may only safely be used within a scope
37protected by flockfile() (or ftrylockfile()) and funlockfile().  These
38functions may safely be used in a multi-threaded program if and only
39if they are called while the invoking thread owns the ( FILE *)
40object, as is the case after a successful call to the flockfile() or
41ftrylockfile() functions.  If threads are disabled, then
42<<putc_unlocked>> is equivalent to <<putc>>.
43
44The function <<_putc_unlocked_r>> is simply the reentrant version of
45<<putc_unlocked>> that takes an additional reentrant structure pointer
46argument: <[ptr]>.
47
48RETURNS
49See <<putc>>.
50
51PORTABILITY
52POSIX 1003.1 requires <<putc_unlocked>>.  <<putc_unlocked>> may be
53implemented as a macro, so arguments should not have side-effects.
54
55Supporting OS subroutines required: <<close>>, <<fstat>>, <<isatty>>,
56<<lseek>>, <<read>>, <<sbrk>>, <<write>>.
57*/
58
59#if defined(LIBC_SCCS) && !defined(lint)
60static char sccsid[] = "%W% (Berkeley) %G%";
61#endif /* LIBC_SCCS and not lint */
62
63#include <_ansi.h>
64#include <stdio.h>
65
66/*
67 * A subroutine version of the macro putc_unlocked.
68 */
69
70#undef putc_unlocked
71
72int
73_putc_unlocked_r (struct _reent *ptr,
74       int c,
75       register FILE *fp)
76{
77  /* CHECK_INIT is (eventually) called by __swbuf.  */
78
79  return __sputc_r (ptr, c, fp);
80}
81
82#ifndef _REENT_ONLY
83int
84putc_unlocked (int c,
85       register FILE *fp)
86{
87  /* CHECK_INIT is (eventually) called by __swbuf.  */
88
89  return __sputc_r (_REENT, c, fp);
90}
91#endif /* !_REENT_ONLY */
Note: See TracBrowser for help on using the repository browser.