wsetup.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:3k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* wsetbuf.c - file for stdio.h */
  2. /* Copyright 1992 Wind River Systems, Inc. */
  3. /*
  4. modification history
  5. --------------------
  6. 01b,20sep92,smb  documentation additions
  7. 01a,29jul92,smb  taken from UCB stdio
  8. */
  9. /*
  10. DESCRIPTION
  11.  * Copyright (c) 1990 The Regents of the University of California.
  12.  * All rights reserved.
  13.  *
  14.  * This code is derived from software contributed to Berkeley by
  15.  * Chris Torek.
  16.  *
  17.  * Redistribution and use in source and binary forms, with or without
  18.  * modification, are permitted provided that the following conditions
  19.  * are met:
  20.  * 1. Redistributions of source code must retain the above copyright
  21.  *    notice, this list of conditions and the following disclaimer.
  22.  * 2. Redistributions in binary form must reproduce the above copyright
  23.  *    notice, this list of conditions and the following disclaimer in the
  24.  *    documentation and/or other materials provided with the distribution.
  25.  * 3. All advertising materials mentioning features or use of this software
  26.  *    must display the following acknowledgement:
  27.  * This product includes software developed by the University of
  28.  * California, Berkeley and its contributors.
  29.  * 4. Neither the name of the University nor the names of its contributors
  30.  *    may be used to endorse or promote products derived from this software
  31.  *    without specific prior written permission.
  32.  *
  33.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  34.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  35.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  36.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  37.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  38.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  39.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  40.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  41.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  42.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  43.  * SUCH DAMAGE.
  44. INCLUDE FILE: stdio.h, stdlib.h
  45. SEE ALSO: American National Standard X3.159-1989
  46. NOMANUAL
  47. */
  48. #include "vxWorks.h"
  49. #include "stdio.h"
  50. #include "stdlib.h"
  51. #include "private/stdioP.h"
  52. /******************************************************************************
  53. *
  54. * __swsetup - 
  55. *
  56. * Various output routines call wsetup to be sure it is safe to write,
  57. * because either _flags does not include __SWR, or _buf is NULL.
  58. * _wsetup returns 0 if OK to write, nonzero otherwise.
  59. *
  60. * INCLUDE: stdio.h 
  61. *
  62. * RETURNS: 
  63. * NOMANUAL
  64. */
  65. int __swsetup
  66.     (
  67.     FAST FILE *fp
  68.     )
  69.     {
  70.     /* If we are not writing, we had better be reading and writing */
  71.     if ((fp->_flags & __SWR) == 0) 
  72. {
  73. if ((fp->_flags & __SRW) == 0)
  74.     return (EOF);
  75. if (fp->_flags & __SRD) 
  76.     {
  77.     /* clobber any ungetc data */
  78.     if (HASUB(fp))
  79. FREEUB(fp);
  80.     fp->_flags &= ~(__SRD|__SEOF);
  81.     fp->_r = 0;
  82.     fp->_p = fp->_bf._base;
  83.     }
  84. fp->_flags |= __SWR;
  85. }
  86.     /* Make a buffer if necessary, then set _w */
  87.     if (fp->_bf._base == NULL)
  88. __smakebuf (fp);
  89.     if (fp->_flags & __SLBF) 
  90. {
  91. /*
  92.  * It is line buffered, so make _lbfsize be -_bufsize
  93.  * for the putc() macro.  We will change _lbfsize back
  94.  * to 0 whenever we turn off __SWR.
  95.  */
  96. fp->_w = 0;
  97. fp->_lbfsize = -fp->_bf._size;
  98. }
  99.     else
  100. fp->_w = fp->_flags & __SNBF ? 0 : fp->_bf._size;
  101.     return (0);
  102.     }