![HP 68000 Series User Manual Download Page 503](http://html.mh-extra.com/html/hp/68000-series/68000-series_user-manual_157001503.webp)
write
Function
Write to a system file
Synopsis
int write(fildes, buf, nbyte)
int fildes;
char *buf;
unsigned nbyte;
Description
The write macro writes to a system file. This macro is an interface to the
UNIX system call write(2). R efer to the HP-UX Reference Manual for detailed
information.
Diagnostics
If the system call to write(2) is successful, the number of bytes written is
returned. Otherwise, -1 is returned and a system generated error message is
written to the journal window of the debugger.
Example
The following command file segment defines two global debugger symbols and
includes the definition of a user-defined macro that uses write().
Symbol Add int infile
Symbol Add int outfile
Debugger Macro Add int foo(infile, outfile)
int infile; /* file descriptor to read from */
int outfile; /* file descriptor to write to */
{
char buf[80];
while (!read(infile, buf, 80))
write(outfile, buf, 80);
}
Chapter 11: Predefined Macros
write
481
Summary of Contents for 68000 Series
Page 1: ...User s Guide HP B1466 68000 Series Debugger Simulator ...
Page 22: ...Contents xxii ...
Page 23: ...Part 1 Quick Start Guide ...
Page 24: ...Part 1 2 ...
Page 57: ...Part 2 User s Guide ...
Page 58: ...Part 2 36 ...
Page 140: ...Chapter 3 Loading and Executing Programs Using the Debugger with the Branch Validator 118 ...
Page 234: ...Chapter 6 Using Macros and Command Files Using Command Files 212 ...
Page 266: ...Chapter 7 Configuring the Debugger Setting X Resources 244 ...
Page 267: ...Part 3 Concept Guide ...
Page 268: ...Part 3 246 ...
Page 269: ...8 X Resources and the Graphical Interface An introduction to X resources 247 ...
Page 281: ...Part 4 Reference ...
Page 282: ...Part 4 260 ...
Page 283: ...9 Debugger Commands Detailed descriptions of command line commands 261 ...
Page 436: ...Chapter 9 Debugger Commands Window Toggle_View 414 ...
Page 466: ...Chapter 10 Expressions and Symbols in Debugger Commands Symbolic Referencing 444 ...
Page 467: ...11 Predefined Macros 445 ...
Page 504: ...Chapter 11 Predefined Macros write 482 ...
Page 505: ...12 Debugger Error Messages A list of the error messages generated by the debugger 483 ...
Page 524: ...Chapter 12 Debugger Error Messages 502 ...
Page 531: ...Part 5 Installation Guide ...
Page 532: ...Part 5 510 ...
Page 533: ...14 Installation How to install the debugger software on your computer 511 ...
Page 584: ...Index 562 ...