WRITE.2
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:2k
源码类别:

操作系统开发

开发平台:

C/C++

  1. ." Copyright (c) 1980 Regents of the University of California.
  2. ." All rights reserved.  The Berkeley software License Agreement
  3. ." specifies the terms and conditions for redistribution.
  4. ."
  5. ." @(#)write.2 6.5 (Berkeley) 5/14/86
  6. ."
  7. .TH WRITE 2 "May 14, 1986"
  8. .UC 4
  9. .SH NAME
  10. write - write output
  11. .SH SYNOPSIS
  12. .nf
  13. .ft B
  14. #include <sys/types.h>
  15. #include <unistd.h>
  16. ssize_t write(int fIdfP, const void *fIbuffP, size_t fInbytesfP)
  17. .fi
  18. .SH DESCRIPTION
  19. .B Write
  20. attempts to write
  21. .I nbytes
  22. of data to the object referenced by the descriptor
  23. .I d
  24. from the buffer pointed to by
  25. .IR buf .
  26. .PP
  27. On objects capable of seeking, the fBwritefP starts at a position
  28. given by the pointer associated with
  29. .IR d ,
  30. see
  31. .BR lseek (2).
  32. Upon return from
  33. .BR write ,
  34. the pointer is incremented by the number of bytes actually written.
  35. .PP
  36. Objects that are not capable of seeking always write from the current
  37. position.  The value of the pointer associated with such an object
  38. is undefined.
  39. .PP
  40. When using non-blocking I/O on objects such as TCP/IP channels that are
  41. subject to flow control,
  42. .B write
  43. may write fewer bytes than requested;
  44. the return value must be noted,
  45. and the remainder of the operation should be retried when possible.
  46. .SH "RETURN VALUE
  47. Upon successful completion the number of bytes actually written
  48. is returned.  Otherwise a -1 is returned and the global variable
  49. .B errno
  50. is set to indicate the error.
  51. .SH ERRORS
  52. .B Write
  53. will fail and the file pointer will remain unchanged if one or more
  54. of the following are true:
  55. .TP 15
  56. [EBADF]
  57. fIDfP is not a valid descriptor open for writing.
  58. .TP 15
  59. [EPIPE]
  60. An attempt is made to write to a pipe that is not open
  61. for reading by any process.
  62. .TP 15
  63. [EPIPE]
  64. An attempt is made to write to a TCP channel
  65. that is not connected to a peer socket.
  66. .TP 15
  67. [EFBIG]
  68. An attempt was made to write a file that exceeds the process's
  69. file size limit or the maximum file size.
  70. .TP 15
  71. [EFAULT]
  72. Part of the data to be written to the file
  73. points outside the process's allocated address space.
  74. .TP 15
  75. [ENOSPC]
  76. There is no free space remaining on the file system
  77. containing the file.
  78. .ig
  79. .TP 15
  80. [EDQUOT]
  81. The user's quota of disk blocks on the file system
  82. containing the file has been exhausted.
  83. ..
  84. .TP 15
  85. [EIO]
  86. An I/O error occurred while reading from or writing to the file system.
  87. .TP 15
  88. [EAGAIN]
  89. The file was marked for non-blocking I/O,
  90. and no data could be written immediately.
  91. .SH "SEE ALSO"
  92. .BR fcntl (2),
  93. .BR lseek (2),
  94. .BR open (2),
  95. .BR pipe (2),
  96. .BR read (2).