Mail Archives: djgpp-workers/2003/03/31/12:47:33
Hello.
Below is a patch for the DPMI docs for the @ref and @var{errno} problems
mentioned in another mail.
OK to commit?
Bye, Rich =]
Index: src/libc/dpmi/helper/mapmem.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/helper/mapmem.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 mapmem.txh
*** src/libc/dpmi/helper/mapmem.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/helper/mapmem.txh 31 Mar 2003 17:30:53 -0000
*************** This function attempts to map a range of
*** 15,21 ****
specified addresses. One common use of this routine is to map device
memory, such as a linear frame buffer, into the address space of the
calling program. @var{our_addr}, @var{num_bytes}, and @var{phys_addr}
! must be page-aligned. If they are not page-aligned, @var{errno} will
be set to @code{EINVAL} and the routine will fail.
This routine properly handles memory ranges that span multiple DPMI
--- 15,21 ----
specified addresses. One common use of this routine is to map device
memory, such as a linear frame buffer, into the address space of the
calling program. @var{our_addr}, @var{num_bytes}, and @var{phys_addr}
! must be page-aligned. If they are not page-aligned, @code{errno} will
be set to @code{EINVAL} and the routine will fail.
This routine properly handles memory ranges that span multiple DPMI
*************** Even on failure, this routine may affect
*** 31,37 ****
@subheading Return Value
! 0 on success, -1 on failure. On failure, @var{errno} will be set to
@code{EINVAL} for illegal input parameters, or @code{EACCES} if the
DPMI server rejected the mapping request.
--- 31,37 ----
@subheading Return Value
! 0 on success, -1 on failure. On failure, @code{errno} will be set to
@code{EINVAL} for illegal input parameters, or @code{EACCES} if the
DPMI server rejected the mapping request.
Index: src/libc/dpmi/helper/setattr.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/helper/setattr.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 setattr.txh
*** src/libc/dpmi/helper/setattr.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/helper/setattr.txh 31 Mar 2003 17:30:53 -0000
*************** int __djgpp_set_page_attributes(void *ou
*** 13,19 ****
This function sets the DPMI page attributes for the pages in a range
of memory. @var{our_addr} and @var{num_bytes} must be page-aligned.
! If they are not page-aligned, @var{errno} will be set to @code{EINVAL}
and the routine will fail.
Consult DPMI documentation on function 0507H for the meaning of the
--- 13,19 ----
This function sets the DPMI page attributes for the pages in a range
of memory. @var{our_addr} and @var{num_bytes} must be page-aligned.
! If they are not page-aligned, @code{errno} will be set to @code{EINVAL}
and the routine will fail.
Consult DPMI documentation on function 0507H for the meaning of the
*************** Even on failure, this routine may affect
*** 26,32 ****
@subheading Return Value
! 0 on success, -1 on failure. On failure, @var{errno} will be set to
@code{EINVAL} for illegal input parameters, or @code{EACCES} if the
DPMI server rejected the attribute setting.
--- 26,32 ----
@subheading Return Value
! 0 on success, -1 on failure. On failure, @code{errno} will be set to
@code{EINVAL} for illegal input parameters, or @code{EACCES} if the
DPMI server rejected the attribute setting.
Index: src/libc/fsext/fsext.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/fsext/fsext.txh,v
retrieving revision 1.19
diff -p -c -3 -r1.19 fsext.txh
*** src/libc/fsext/fsext.txh 8 Mar 2003 00:40:22 -0000 1.19
--- src/libc/fsext/fsext.txh 31 Mar 2003 17:31:33 -0000
*************** handler.
*** 281,287 ****
@subheading Return Value
If successful, a new file descriptor is returned. On error, a negative number
! is returned and @var{errno} is set to indicate the error.
@subheading Portability
--- 281,287 ----
@subheading Return Value
If successful, a new file descriptor is returned. On error, a negative number
! is returned and @code{errno} is set to indicate the error.
@subheading Portability
Index: src/libc/posix/stdlib/realpath.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/posix/stdlib/realpath.txh,v
retrieving revision 1.2
diff -p -c -3 -r1.2 realpath.txh
*** src/libc/posix/stdlib/realpath.txh 29 Jan 2003 12:51:41 -0000 1.2
--- src/libc/posix/stdlib/realpath.txh 31 Mar 2003 17:31:33 -0000
*************** caller should ensure there is enough spa
*** 32,38 ****
@subheading Return Value
If successful, a pointer to the result buffer is returned. Otherwise,
! @code{NULL} is returned and @var{errno} is set to indicate which error
was detected.
@subheading Portability
--- 32,38 ----
@subheading Return Value
If successful, a pointer to the result buffer is returned. Otherwise,
! @code{NULL} is returned and @code{errno} is set to indicate which error
was detected.
@subheading Portability
Index: src/libc/posix/sys/stat/filelen.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/posix/sys/stat/filelen.txh,v
retrieving revision 1.5
diff -p -c -3 -r1.5 filelen.txh
*** src/libc/posix/sys/stat/filelen.txh 29 Jan 2003 12:51:41 -0000 1.5
--- src/libc/posix/sys/stat/filelen.txh 31 Mar 2003 17:31:44 -0000
*************** long filelength(int fhandle);
*** 12,23 ****
This function returns the size, in bytes, of a file whose handle is
specified in the argument @var{fhandle}. To get the handle of a file
! opened by @ref{fopen} or @ref{freopen}, you can use @ref{fileno} macro.
@subheading Return Value
The size of the file in bytes, or (if any error occured) -1L and
! @var{errno} set to a value describing the cause of the failure. If the
file's length is larger than a 32-bit @code{unsigned int} can hold,
@code{errno} will be set to @code{EOVERFLOW}.
--- 12,24 ----
This function returns the size, in bytes, of a file whose handle is
specified in the argument @var{fhandle}. To get the handle of a file
! opened by @code{fopen} (@pxref{fopen}) or @code{freopen} (@pxref{freopen}),
! you can use @code{fileno} macro (@pxref{fileno}).
@subheading Return Value
The size of the file in bytes, or (if any error occured) -1L and
! @code{errno} set to a value describing the cause of the failure. If the
file's length is larger than a 32-bit @code{unsigned int} can hold,
@code{errno} will be set to @code{EOVERFLOW}.
Index: src/libc/posix/sys/stat/fstat.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/posix/sys/stat/fstat.txh,v
retrieving revision 1.10
diff -p -c -3 -r1.10 fstat.txh
*** src/libc/posix/sys/stat/fstat.txh 29 Jan 2003 12:51:41 -0000 1.10
--- src/libc/posix/sys/stat/fstat.txh 31 Mar 2003 17:31:47 -0000
*************** described in @ref{_djstat_flags}.
*** 30,36 ****
@subheading Return Value
! Zero on success, nonzero on failure (and @var{errno} set).
@subheading Portability
--- 30,36 ----
@subheading Return Value
! Zero on success, nonzero on failure (and @code{errno} set).
@subheading Portability
Index: src/libc/posix/sys/stat/lfilelen.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/posix/sys/stat/lfilelen.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 lfilelen.txh
*** src/libc/posix/sys/stat/lfilelen.txh 29 Jan 2003 12:51:41 -0000 1.4
--- src/libc/posix/sys/stat/lfilelen.txh 31 Mar 2003 17:31:53 -0000
*************** long long lfilelength(int fhandle);
*** 12,23 ****
This function returns the size, in bytes, of a file whose handle is
specified in the argument @var{fhandle}. To get the handle of a file
! opened by @ref{fopen} or @ref{freopen}, you can use @ref{fileno} macro.
@subheading Return Value
The size of the file in bytes, or (if any error occured) -1LL and
! @var{errno} set to a value describing the cause of the failure.
The return value is of type @code{long long} which allows file sizes of
@math{2^63-1} bytes to be returned. Note that FAT16 limits files to near
--- 12,24 ----
This function returns the size, in bytes, of a file whose handle is
specified in the argument @var{fhandle}. To get the handle of a file
! opened by @code{fopen} (@pxref{fopen}) or @code{freopen} (@pxref{freopen}),
! you can use @code{fileno} macro (@pxref{fileno}).
@subheading Return Value
The size of the file in bytes, or (if any error occured) -1LL and
! @code{errno} set to a value describing the cause of the failure.
The return value is of type @code{long long} which allows file sizes of
@math{2^63-1} bytes to be returned. Note that FAT16 limits files to near
Index: src/libc/posix/sys/stat/lstat.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/posix/sys/stat/lstat.txh,v
retrieving revision 1.6
diff -p -c -3 -r1.6 lstat.txh
*** src/libc/posix/sys/stat/lstat.txh 29 Jan 2003 12:51:41 -0000 1.6
--- src/libc/posix/sys/stat/lstat.txh 31 Mar 2003 17:31:54 -0000
*************** described in @ref{_djstat_flags}.
*** 65,71 ****
@subheading Return Value
! Zero on success, nonzero on failure (and @var{errno} set).
@subheading Portability
--- 65,71 ----
@subheading Return Value
! Zero on success, nonzero on failure (and @code{errno} set).
@subheading Portability
Index: src/libc/posix/sys/stat/stat.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/posix/sys/stat/stat.txh,v
retrieving revision 1.12
diff -p -c -3 -r1.12 stat.txh
*** src/libc/posix/sys/stat/stat.txh 7 Feb 2003 18:13:55 -0000 1.12
--- src/libc/posix/sys/stat/stat.txh 31 Mar 2003 17:31:59 -0000
*************** described in @ref{_djstat_flags}.
*** 66,72 ****
@subheading Return Value
! Zero on success, nonzero on failure (and @var{errno} set).
@subheading Portability
--- 66,72 ----
@subheading Return Value
! Zero on success, nonzero on failure (and @code{errno} set).
@subheading Portability
Index: src/libc/posix/sys/uio/readv.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/posix/sys/uio/readv.txh,v
retrieving revision 1.1
diff -p -c -3 -r1.1 readv.txh
*** src/libc/posix/sys/uio/readv.txh 14 Mar 2003 19:03:59 -0000 1.1
--- src/libc/posix/sys/uio/readv.txh 31 Mar 2003 17:32:00 -0000
*************** struct iovec @{
*** 29,35 ****
@subheading Return Value
On successful completion the function returns the number of bytes read.
! Otherwise, a value of -1 is returned and @var{errno} is set appropriately.
@table @samp
--- 29,35 ----
@subheading Return Value
On successful completion the function returns the number of bytes read.
! Otherwise, a value of -1 is returned and @code{errno} is set appropriately.
@table @samp
Index: src/libc/posix/sys/uio/writev.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/posix/sys/uio/writev.txh,v
retrieving revision 1.1
diff -p -c -3 -r1.1 writev.txh
*** src/libc/posix/sys/uio/writev.txh 14 Mar 2003 19:03:59 -0000 1.1
--- src/libc/posix/sys/uio/writev.txh 31 Mar 2003 17:32:05 -0000
*************** struct iovec @{
*** 28,34 ****
@subheading Return Value
On successful completion the function returns the number of bytes written.
! Otherwise, a value of -1 is returned and @var{errno} is set appropriately.
@table @samp
--- 28,34 ----
@subheading Return Value
On successful completion the function returns the number of bytes written.
! Otherwise, a value of -1 is returned and @code{errno} is set appropriately.
@table @samp
Index: src/libc/posix/unistd/chdir.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/posix/unistd/chdir.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 chdir.txh
*** src/libc/posix/unistd/chdir.txh 29 Jan 2003 12:51:41 -0000 1.3
--- src/libc/posix/unistd/chdir.txh 31 Mar 2003 17:32:05 -0000
*************** directory for the current drive is chang
*** 17,23 ****
@subheading Return Value
! Zero if the new directory exists, else nonzero and @var{errno} set if error.
@subheading Portability
--- 17,23 ----
@subheading Return Value
! Zero if the new directory exists, else nonzero and @code{errno} set if error.
@subheading Portability
Index: src/libc/ansi/stdlib/rand.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/ansi/stdlib/rand.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 rand.txh
*** src/libc/ansi/stdlib/rand.txh 29 Jan 2003 12:30:21 -0000 1.4
--- src/libc/ansi/stdlib/rand.txh 31 Mar 2003 17:32:11 -0000
*************** void srand(unsigned seed);
*** 59,65 ****
Initializes the random number generator for @code{rand()}. If you
pass the same seed, @code{rand()} will return the same sequence of
! numbers. You can seed from @ref{time} or @ref{rawclock}.
@subheading Portability
--- 59,66 ----
Initializes the random number generator for @code{rand()}. If you
pass the same seed, @code{rand()} will return the same sequence of
! numbers. You can seed from @code{time} (@pxref{time})
! or @code{rawclock} (@pxref{rawclock}).
@subheading Portability
Index: src/libc/compat/ioctl/ioctl.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/compat/ioctl/ioctl.txh,v
retrieving revision 1.6
diff -p -c -3 -r1.6 ioctl.txh
*** src/libc/compat/ioctl/ioctl.txh 7 Feb 2003 18:13:52 -0000 1.6
--- src/libc/compat/ioctl/ioctl.txh 31 Mar 2003 17:32:12 -0000
*************** The call to @code{ioctl} should look lik
*** 45,51 ****
int ret_val = ioctl (fd, DOS_GETDEVDATA);
@end example
! For another way of achieving the same effect, see @ref{_get_dev_info}.
@item DOS_SETDEVDATA
Set device information. Returns the new device information word form @code{DX}
--- 45,52 ----
int ret_val = ioctl (fd, DOS_GETDEVDATA);
@end example
! For another way of achieving the same effect, see @code{_get_dev_info}
! (@pxref{_get_dev_info}).
@item DOS_SETDEVDATA
Set device information. Returns the new device information word form @code{DX}
*************** returning the same info.
*** 114,120 ****
@item DOS_ISREDIRHND
Check if a file handle refers to a local or remote device. See
! @ref{_is_remote_handle} for another way of doing this.
@item DOS_SETRETRY
Set the sharing retry count. The first extra parameter specifies the pause
--- 115,122 ----
@item DOS_ISREDIRHND
Check if a file handle refers to a local or remote device. See
! @code{_is_remote_handle} (@pxref{_is_remote_handle}) for another way
! of doing this.
@item DOS_SETRETRY
Set the sharing retry count. The first extra parameter specifies the pause
Index: src/libc/dos/dos/truename.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dos/dos/truename.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 truename.txh
*** src/libc/dos/dos/truename.txh 29 Jan 2003 12:48:14 -0000 1.3
--- src/libc/dos/dos/truename.txh 31 Mar 2003 17:32:18 -0000
*************** Upon success, the function will place th
*** 33,45 ****
if that's non-NULL; the buffer should be large enough to contain the
largest possible pathname (PATH_MAX characters). If @var{true_path}
is a NULL pointer, the space to hold the result will be allocated by
! calling @ref{malloc}; it is up to the caller to release the buffer by
! calling @ref{free}.
@subheading Return Value
The function returns the pointer to the result. In case of any failure,
! a NULL pointer is returned, and @var{errno} is set.
@subheading Portability
--- 33,45 ----
if that's non-NULL; the buffer should be large enough to contain the
largest possible pathname (PATH_MAX characters). If @var{true_path}
is a NULL pointer, the space to hold the result will be allocated by
! calling @code{malloc} (@pxref{malloc}); it is up to the caller to release
! the buffer by calling @code{free} (@pxref{free}).
@subheading Return Value
The function returns the pointer to the result. In case of any failure,
! a NULL pointer is returned, and @code{errno} is set.
@subheading Portability
Index: src/libc/dpmi/api/d0000.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0000.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0000.txh
*** src/libc/dpmi/api/d0000.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0000.txh 31 Mar 2003 17:32:18 -0000
*************** int __dpmi_allocate_ldt_descriptors(int
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0000
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0000
*************** Allocates @var{count} descriptors.
*** 21,28 ****
@subheading Return Value
-1 on error, else the first descriptor. Use
! @ref{__dpmi_get_selector_increment_value} to figure out the remaining
! selectors.
@subheading Portability
--- 21,29 ----
@subheading Return Value
-1 on error, else the first descriptor. Use
! @code{__dpmi_get_selector_increment_value}
! (@pxref{__dpmi_get_selector_increment_value}) to figure out
! the remaining selectors.
@subheading Portability
Index: src/libc/dpmi/api/d0001.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0001.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0001.txh
*** src/libc/dpmi/api/d0001.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0001.txh 31 Mar 2003 17:32:23 -0000
*************** int __dpmi_free_ldt_descriptor(int descr
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0001
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0001
Index: src/libc/dpmi/api/d0002.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0002.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0002.txh
*** src/libc/dpmi/api/d0002.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0002.txh 31 Mar 2003 17:32:23 -0000
*************** int __dpmi_segment_to_descriptor(int _se
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0002
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0002
Index: src/libc/dpmi/api/d0003.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0003.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0003.txh
*** src/libc/dpmi/api/d0003.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0003.txh 31 Mar 2003 17:32:28 -0000
*************** int __dpmi_get_selector_increment_value(
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0003
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0003
Index: src/libc/dpmi/api/d0006.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0006.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0006.txh
*** src/libc/dpmi/api/d0006.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0006.txh 31 Mar 2003 17:32:28 -0000
*************** int __dpmi_get_segment_base_address(int
*** 11,19 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0006
--- 11,19 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0006
Index: src/libc/dpmi/api/d0007.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0007.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0007.txh
*** src/libc/dpmi/api/d0007.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0007.txh 31 Mar 2003 17:32:31 -0000
*************** int __dpmi_set_segment_base_address(int
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0007
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0007
Index: src/libc/dpmi/api/d0008.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0008.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0008.txh
*** src/libc/dpmi/api/d0008.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0008.txh 31 Mar 2003 17:32:31 -0000
*************** int __dpmi_set_segment_limit(int _select
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0008
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0008
Index: src/libc/dpmi/api/d0009.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0009.txh,v
retrieving revision 1.5
diff -p -c -3 -r1.5 d0009.txh
*** src/libc/dpmi/api/d0009.txh 29 Jan 2003 12:50:45 -0000 1.5
--- src/libc/dpmi/api/d0009.txh 31 Mar 2003 17:32:43 -0000
*************** int __dpmi_set_descriptor_access_rights(
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0009
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0009
Index: src/libc/dpmi/api/d000a.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d000a.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d000a.txh
*** src/libc/dpmi/api/d000a.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d000a.txh 31 Mar 2003 17:32:43 -0000
*************** int __dpmi_create_alias_descriptor(int _
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x000a
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x000a
Index: src/libc/dpmi/api/d000b.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d000b.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d000b.txh
*** src/libc/dpmi/api/d000b.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d000b.txh 31 Mar 2003 17:32:50 -0000
*************** int __dpmi_get_descriptor(int _selector,
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x000b
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x000b
Index: src/libc/dpmi/api/d000c.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d000c.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d000c.txh
*** src/libc/dpmi/api/d000c.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d000c.txh 31 Mar 2003 17:32:50 -0000
*************** int __dpmi_set_descriptor(int _selector,
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x000c
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x000c
Index: src/libc/dpmi/api/d000d.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d000d.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d000d.txh
*** src/libc/dpmi/api/d000d.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d000d.txh 31 Mar 2003 17:32:55 -0000
*************** int __dpmi_allocate_specific_ldt_descrip
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x000d
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x000d
Index: src/libc/dpmi/api/d000e.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d000e.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d000e.txh
*** src/libc/dpmi/api/d000e.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d000e.txh 31 Mar 2003 17:32:55 -0000
*************** int __dpmi_get_multiple_descriptors(int
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x000e (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x000e (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d000f.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d000f.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d000f.txh
*** src/libc/dpmi/api/d000f.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d000f.txh 31 Mar 2003 17:33:01 -0000
*************** int __dpmi_set_multiple_descriptors(int
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x000f (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x000f (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d0100.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0100.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0100.txh
*** src/libc/dpmi/api/d0100.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0100.txh 31 Mar 2003 17:33:01 -0000
*************** int __dpmi_allocate_dos_memory(int _para
*** 11,19 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0100
--- 11,19 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0100
Index: src/libc/dpmi/api/d0101.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0101.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0101.txh
*** src/libc/dpmi/api/d0101.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0101.txh 31 Mar 2003 17:33:08 -0000
*************** int __dpmi_free_dos_memory(int _selector
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0101
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0101
Index: src/libc/dpmi/api/d0102.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0102.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0102.txh
*** src/libc/dpmi/api/d0102.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0102.txh 31 Mar 2003 17:33:08 -0000
*************** int __dpmi_resize_dos_memory(int _select
*** 11,19 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0102
--- 11,19 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0102
Index: src/libc/dpmi/api/d0200.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0200.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0200.txh
*** src/libc/dpmi/api/d0200.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0200.txh 31 Mar 2003 17:33:13 -0000
*************** int __dpmi_get_real_mode_interrupt_vecto
*** 11,19 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0200
--- 11,19 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0200
Index: src/libc/dpmi/api/d0201.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0201.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0201.txh
*** src/libc/dpmi/api/d0201.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0201.txh 31 Mar 2003 17:33:13 -0000
*************** int __dpmi_set_real_mode_interrupt_vecto
*** 11,19 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0201
--- 11,19 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0201
Index: src/libc/dpmi/api/d0202.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0202.txh,v
retrieving revision 1.5
diff -p -c -3 -r1.5 d0202.txh
*** src/libc/dpmi/api/d0202.txh 29 Jan 2003 12:50:45 -0000 1.5
--- src/libc/dpmi/api/d0202.txh 31 Mar 2003 17:33:25 -0000
*************** int __dpmi_get_processor_exception_handl
*** 12,20 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0202
--- 12,20 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0202
Index: src/libc/dpmi/api/d0203.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0203.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0203.txh
*** src/libc/dpmi/api/d0203.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0203.txh 31 Mar 2003 17:33:25 -0000
*************** int __dpmi_set_processor_exception_handl
*** 12,20 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0203
--- 12,20 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0203
Index: src/libc/dpmi/api/d0204.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0204.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0204.txh
*** src/libc/dpmi/api/d0204.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0204.txh 31 Mar 2003 17:33:30 -0000
*************** int __dpmi_get_protected_mode_interrupt_
*** 11,19 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0204
--- 11,19 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0204
Index: src/libc/dpmi/api/d0205.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0205.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0205.txh
*** src/libc/dpmi/api/d0205.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0205.txh 31 Mar 2003 17:33:30 -0000
*************** int __dpmi_set_protected_mode_interrupt_
*** 11,19 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0205
--- 11,19 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0205
Index: src/libc/dpmi/api/d0210.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0210.txh,v
retrieving revision 1.5
diff -p -c -3 -r1.5 d0210.txh
*** src/libc/dpmi/api/d0210.txh 29 Jan 2003 12:50:45 -0000 1.5
--- src/libc/dpmi/api/d0210.txh 31 Mar 2003 17:33:35 -0000
*************** int __dpmi_get_extended_exception_handle
*** 12,20 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0210 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 12,20 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0210 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d0211.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0211.txh,v
retrieving revision 1.5
diff -p -c -3 -r1.5 d0211.txh
*** src/libc/dpmi/api/d0211.txh 29 Jan 2003 12:50:45 -0000 1.5
--- src/libc/dpmi/api/d0211.txh 31 Mar 2003 17:33:35 -0000
*************** int __dpmi_get_extended_exception_handle
*** 12,20 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0211 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 12,20 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0211 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d0212.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0212.txh,v
retrieving revision 1.5
diff -p -c -3 -r1.5 d0212.txh
*** src/libc/dpmi/api/d0212.txh 29 Jan 2003 12:50:45 -0000 1.5
--- src/libc/dpmi/api/d0212.txh 31 Mar 2003 17:33:40 -0000
*************** int __dpmi_set_extended_exception_handle
*** 12,20 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0212 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 12,20 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0212 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d0213.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0213.txh,v
retrieving revision 1.5
diff -p -c -3 -r1.5 d0213.txh
*** src/libc/dpmi/api/d0213.txh 29 Jan 2003 12:50:45 -0000 1.5
--- src/libc/dpmi/api/d0213.txh 31 Mar 2003 17:33:40 -0000
*************** int __dpmi_set_extended_exception_handle
*** 12,20 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0213 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 12,20 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0213 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d0300.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0300.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0300.txh
*** src/libc/dpmi/api/d0300.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0300.txh 31 Mar 2003 17:33:45 -0000
*************** int __dpmi_simulate_real_mode_interrupt(
*** 11,19 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0300
--- 11,19 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0300
Index: src/libc/dpmi/api/d0300_z.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0300_z.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0300_z.txh
*** src/libc/dpmi/api/d0300_z.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0300_z.txh 31 Mar 2003 17:33:45 -0000
*************** int __dpmi_int(int _vector, __dpmi_regs
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0300
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0300
Index: src/libc/dpmi/api/d0301.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0301.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0301.txh
*** src/libc/dpmi/api/d0301.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0301.txh 31 Mar 2003 17:33:52 -0000
*************** int __dpmi_simulate_real_mode_procedure_
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0301
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0301
Index: src/libc/dpmi/api/d0301_s.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0301_s.txh,v
retrieving revision 1.5
diff -p -c -3 -r1.5 d0301_s.txh
*** src/libc/dpmi/api/d0301_s.txh 29 Jan 2003 12:50:45 -0000 1.5
--- src/libc/dpmi/api/d0301_s.txh 31 Mar 2003 17:33:52 -0000
*************** int __dpmi_simulate_real_mode_procedure_
*** 13,21 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0301
--- 13,21 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0301
Index: src/libc/dpmi/api/d0302.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0302.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0302.txh
*** src/libc/dpmi/api/d0302.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0302.txh 31 Mar 2003 17:33:58 -0000
*************** int __dpmi_simulate_real_mode_procedure_
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0302
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0302
Index: src/libc/dpmi/api/d0303.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0303.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0303.txh
*** src/libc/dpmi/api/d0303.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0303.txh 31 Mar 2003 17:33:58 -0000
*************** int __dpmi_allocate_real_mode_callback(v
*** 12,20 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0303
--- 12,20 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0303
Index: src/libc/dpmi/api/d0304.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0304.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0304.txh
*** src/libc/dpmi/api/d0304.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0304.txh 31 Mar 2003 17:34:02 -0000
*************** int __dpmi_free_real_mode_callback(__dpm
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0303
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0303
Index: src/libc/dpmi/api/d0305.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0305.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0305.txh
*** src/libc/dpmi/api/d0305.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0305.txh 31 Mar 2003 17:34:02 -0000
*************** int __dpmi_get_state_save_restore_addr(_
*** 11,19 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0305
--- 11,19 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0305
Index: src/libc/dpmi/api/d0306.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0306.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0306.txh
*** src/libc/dpmi/api/d0306.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0306.txh 31 Mar 2003 17:34:08 -0000
*************** int __dpmi_get_raw_mode_switch_addr(__dp
*** 11,19 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0306
--- 11,19 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0306
Index: src/libc/dpmi/api/d0400.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0400.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0400.txh
*** src/libc/dpmi/api/d0400.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0400.txh 31 Mar 2003 17:34:08 -0000
*************** int __dpmi_get_version(__dpmi_version_re
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0400
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0400
Index: src/libc/dpmi/api/d0401.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0401.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0401.txh
*** src/libc/dpmi/api/d0401.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0401.txh 31 Mar 2003 17:34:14 -0000
*************** int __dpmi_get_capabilities(int *flags,
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0401 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0401 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d0500.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0500.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0500.txh
*** src/libc/dpmi/api/d0500.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0500.txh 31 Mar 2003 17:34:14 -0000
*************** int __dpmi_get_free_memory_information(_
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0500
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0500
Index: src/libc/dpmi/api/d0501.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0501.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0501.txh
*** src/libc/dpmi/api/d0501.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0501.txh 31 Mar 2003 17:34:20 -0000
*************** int __dpmi_allocate_memory(__dpmi_meminf
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0501
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0501
Index: src/libc/dpmi/api/d0502.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0502.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0502.txh
*** src/libc/dpmi/api/d0502.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0502.txh 31 Mar 2003 17:34:20 -0000
*************** int __dpmi_free_memory(unsigned long _ha
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0502
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0502
Index: src/libc/dpmi/api/d0503.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0503.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0503.txh
*** src/libc/dpmi/api/d0503.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0503.txh 31 Mar 2003 17:34:25 -0000
*************** int __dpmi_resize_memory(__dpmi_meminfo
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0503
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0503
Index: src/libc/dpmi/api/d0504.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0504.txh,v
retrieving revision 1.5
diff -p -c -3 -r1.5 d0504.txh
*** src/libc/dpmi/api/d0504.txh 29 Jan 2003 12:50:45 -0000 1.5
--- src/libc/dpmi/api/d0504.txh 31 Mar 2003 17:34:25 -0000
*************** int __dpmi_allocate_linear_memory(__dpmi
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0504 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0504 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d0505.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0505.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0505.txh
*** src/libc/dpmi/api/d0505.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0505.txh 31 Mar 2003 17:34:31 -0000
*************** int __dpmi_resize_linear_memory(__dpmi_m
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0505 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0505 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d0506.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0506.txh,v
retrieving revision 1.5
diff -p -c -3 -r1.5 d0506.txh
*** src/libc/dpmi/api/d0506.txh 29 Jan 2003 12:50:45 -0000 1.5
--- src/libc/dpmi/api/d0506.txh 31 Mar 2003 17:34:31 -0000
*************** int __dpmi_get_page_attributes(__dpmi_me
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0506 (DPMI 1.0 only). Supported by CWSDPMI, but
not by Windows.
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0506 (DPMI 1.0 only). Supported by CWSDPMI, but
not by Windows.
Index: src/libc/dpmi/api/d0507.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0507.txh,v
retrieving revision 1.6
diff -p -c -3 -r1.6 d0507.txh
*** src/libc/dpmi/api/d0507.txh 29 Jan 2003 12:50:45 -0000 1.6
--- src/libc/dpmi/api/d0507.txh 31 Mar 2003 17:34:37 -0000
*************** int __dpmi_set_page_attributes(__dpmi_me
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0507 (DPMI 1.0 only). Supported by CWSDPMI, but
not by Windows.
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0507 (DPMI 1.0 only). Supported by CWSDPMI, but
not by Windows.
Index: src/libc/dpmi/api/d0508.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0508.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0508.txh
*** src/libc/dpmi/api/d0508.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0508.txh 31 Mar 2003 17:34:37 -0000
*************** int __dpmi_map_device_in_memory_block(__
*** 11,19 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0508 (DPMI 1.0 only). Supported by CWSDPMI, but
not by Windows.
--- 11,19 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0508 (DPMI 1.0 only). Supported by CWSDPMI, but
not by Windows.
Index: src/libc/dpmi/api/d0509.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0509.txh,v
retrieving revision 1.5
diff -p -c -3 -r1.5 d0509.txh
*** src/libc/dpmi/api/d0509.txh 29 Jan 2003 12:50:45 -0000 1.5
--- src/libc/dpmi/api/d0509.txh 31 Mar 2003 17:34:42 -0000
*************** int __dpmi_map_conventional_memory_in_me
*** 12,20 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0509 (DPMI 1.0 only). Supported by CWSDPMI, but
not by Windows.
--- 12,20 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0509 (DPMI 1.0 only). Supported by CWSDPMI, but
not by Windows.
Index: src/libc/dpmi/api/d050a.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d050a.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d050a.txh
*** src/libc/dpmi/api/d050a.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d050a.txh 31 Mar 2003 17:34:42 -0000
*************** int __dpmi_get_memory_block_size_and_bas
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x050a (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x050a (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d050b.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d050b.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d050b.txh
*** src/libc/dpmi/api/d050b.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d050b.txh 31 Mar 2003 17:34:48 -0000
*************** int __dpmi_get_memory_information(__dpmi
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x050b (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x050b (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d0600.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0600.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0600.txh
*** src/libc/dpmi/api/d0600.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0600.txh 31 Mar 2003 17:34:48 -0000
*************** int __dpmi_lock_linear_region(__dpmi_mem
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0600
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0600
Index: src/libc/dpmi/api/d0601.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0601.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0601.txh
*** src/libc/dpmi/api/d0601.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0601.txh 31 Mar 2003 17:35:00 -0000
*************** int __dpmi_unlock_linear_region(__dpmi_m
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0601
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0601
Index: src/libc/dpmi/api/d0602.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0602.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0602.txh
*** src/libc/dpmi/api/d0602.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0602.txh 31 Mar 2003 17:35:00 -0000
*************** int __dpmi_mark_real_mode_region_as_page
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0602
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0602
Index: src/libc/dpmi/api/d0603.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0603.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0603.txh
*** src/libc/dpmi/api/d0603.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0603.txh 31 Mar 2003 17:35:06 -0000
*************** int __dpmi_relock_real_mode_region(__dpm
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0603
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0603
Index: src/libc/dpmi/api/d0604.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0604.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0604.txh
*** src/libc/dpmi/api/d0604.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0604.txh 31 Mar 2003 17:35:06 -0000
*************** int __dpmi_get_page_size(unsigned long *
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0604
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0604
Index: src/libc/dpmi/api/d0702.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0702.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0702.txh
*** src/libc/dpmi/api/d0702.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0702.txh 31 Mar 2003 17:35:18 -0000
*************** int __dpmi_mark_page_as_demand_paging_ca
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0702
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0702
Index: src/libc/dpmi/api/d0703.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0703.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0703.txh
*** src/libc/dpmi/api/d0703.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0703.txh 31 Mar 2003 17:35:18 -0000
*************** int __dpmi_discard_page_contents(__dpmi_
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0703
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0703
Index: src/libc/dpmi/api/d0800.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0800.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0800.txh
*** src/libc/dpmi/api/d0800.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0800.txh 31 Mar 2003 17:35:23 -0000
*************** int __dpmi_physical_address_mapping(__dp
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0800
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0800
Index: src/libc/dpmi/api/d0801.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0801.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0801.txh
*** src/libc/dpmi/api/d0801.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0801.txh 31 Mar 2003 17:35:23 -0000
*************** int __dpmi_free_physical_address_mapping
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0801 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0801 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d09.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d09.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d09.txh
*** src/libc/dpmi/api/d09.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d09.txh 31 Mar 2003 17:35:28 -0000
*************** int __dpmi_get_and_set_virtual_interrupt
*** 10,24 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AH = 0x09
This function restores the interrupt state from a previous call to
! @ref{__dpmi_get_and_disable_virtual_interrupt_state} or
! @ref{__dpmi_get_and_enable_virtual_interrupt_state}.
@subheading Return Value
--- 10,26 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AH = 0x09
This function restores the interrupt state from a previous call to
! @code{__dpmi_get_and_disable_virtual_interrupt_state}
! (@pxref{__dpmi_get_and_disable_virtual_interrupt_state}) or
! @code{__dpmi_get_and_enable_virtual_interrupt_state}
! (@pxref{__dpmi_get_and_enable_virtual_interrupt_state}).
@subheading Return Value
Index: src/libc/dpmi/api/d0900.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0900.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0900.txh
*** src/libc/dpmi/api/d0900.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0900.txh 31 Mar 2003 17:35:28 -0000
*************** int __dpmi_get_and_disable_virtual_inter
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0900
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0900
Index: src/libc/dpmi/api/d0901.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0901.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0901.txh
*** src/libc/dpmi/api/d0901.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0901.txh 31 Mar 2003 17:35:33 -0000
*************** int __dpmi_get_and_enable_virtual_interr
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0901
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0901
Index: src/libc/dpmi/api/d0902.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0902.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0902.txh
*** src/libc/dpmi/api/d0902.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0902.txh 31 Mar 2003 17:35:33 -0000
*************** int __dpmi_get_virtual_interrupt_state(v
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0902
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0902
Index: src/libc/dpmi/api/d0a00.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0a00.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0a00.txh
*** src/libc/dpmi/api/d0a00.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0a00.txh 31 Mar 2003 17:35:38 -0000
*************** int __dpmi_get_vendor_specific_api_entry
*** 11,19 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0a00
--- 11,19 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0a00
Index: src/libc/dpmi/api/d0b00.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0b00.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0b00.txh
*** src/libc/dpmi/api/d0b00.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0b00.txh 31 Mar 2003 17:35:38 -0000
*************** int __dpmi_set_debug_watchpoint(__dpmi_m
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0b00
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0b00
Index: src/libc/dpmi/api/d0b01.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0b01.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 d0b01.txh
*** src/libc/dpmi/api/d0b01.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/d0b01.txh 31 Mar 2003 17:35:43 -0000
*************** int __dpmi_clear_debug_watchpoint(unsign
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0b01
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0b01
Index: src/libc/dpmi/api/d0b02.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0b02.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0b02.txh
*** src/libc/dpmi/api/d0b02.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0b02.txh 31 Mar 2003 17:35:43 -0000
*************** int __dpmi_get_state_of_debug_watchpoint
*** 11,19 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0b02
--- 11,19 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0b02
Index: src/libc/dpmi/api/d0b03.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0b03.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0b03.txh
*** src/libc/dpmi/api/d0b03.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0b03.txh 31 Mar 2003 17:35:48 -0000
*************** int __dpmi_reset_debug_watchpoint(unsign
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0b03
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0b03
Index: src/libc/dpmi/api/d0c00.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0c00.txh,v
retrieving revision 1.5
diff -p -c -3 -r1.5 d0c00.txh
*** src/libc/dpmi/api/d0c00.txh 29 Jan 2003 12:50:45 -0000 1.5
--- src/libc/dpmi/api/d0c00.txh 31 Mar 2003 17:35:48 -0000
*************** int __dpmi_install_resident_service_prov
*** 12,20 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0c00 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 12,20 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0c00 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d0c01.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0c01.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0c01.txh
*** src/libc/dpmi/api/d0c01.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0c01.txh 31 Mar 2003 17:35:54 -0000
*************** int __dpmi_terminate_and_stay_resident(i
*** 11,19 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0c01 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 11,19 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0c01 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d0d00.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0d00.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0d00.txh
*** src/libc/dpmi/api/d0d00.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0d00.txh 31 Mar 2003 17:35:54 -0000
*************** int __dpmi_allocate_shared_memory(__dpmi
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0d00 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0d00 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d0d01.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0d01.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0d01.txh
*** src/libc/dpmi/api/d0d01.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0d01.txh 31 Mar 2003 17:35:59 -0000
*************** int __dpmi_free_shared_memory(unsigned l
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0d01 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0d01 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d0d02.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0d02.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0d02.txh
*** src/libc/dpmi/api/d0d02.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0d02.txh 31 Mar 2003 17:35:59 -0000
*************** int __dpmi_serialize_on_shared_memory(un
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0d02 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0d02 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/d0d03.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/d0d03.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 d0d03.txh
*** src/libc/dpmi/api/d0d03.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/d0d03.txh 31 Mar 2003 17:36:06 -0000
*************** int __dpmi_free_serialization_on_shared_
*** 11,19 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
DPMI function AX = 0x0d03 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
--- 11,19 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
DPMI function AX = 0x0d03 (DPMI 1.0 only). Not supported by CWSDPMI and
Windows.
Index: src/libc/dpmi/api/dpmi_lar.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/dpmi_lar.txh,v
retrieving revision 1.4
diff -p -c -3 -r1.4 dpmi_lar.txh
*** src/libc/dpmi/api/dpmi_lar.txh 29 Jan 2003 12:50:45 -0000 1.4
--- src/libc/dpmi/api/dpmi_lar.txh 31 Mar 2003 17:36:06 -0000
*************** int __dpmi_get_descriptor_access_rights(
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
This function returns the access rights byte from the @code{lar}
opcode.
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
This function returns the access rights byte from the @code{lar}
opcode.
Index: src/libc/dpmi/api/dpmi_lsl.txh
===================================================================
RCS file: /cvs/djgpp/djgpp/src/libc/dpmi/api/dpmi_lsl.txh,v
retrieving revision 1.3
diff -p -c -3 -r1.3 dpmi_lsl.txh
*** src/libc/dpmi/api/dpmi_lsl.txh 29 Jan 2003 12:50:45 -0000 1.3
--- src/libc/dpmi/api/dpmi_lsl.txh 31 Mar 2003 17:36:11 -0000
*************** unsigned __dpmi_get_segment_limit(int _s
*** 10,18 ****
@subheading Description
! Please refer to @ref{DPMI Specification} for details on DPMI
! function call operation. Also see @ref{DPMI Overview} for general
! information.
@subheading Return Value
--- 10,18 ----
@subheading Description
! Please refer to the DPMI Specification (@pxref{DPMI Specification})
! for details on DPMI function call operation. Also see
! the DPMI Overview (@pxref{DPMI Overview}) for general information.
@subheading Return Value
- Raw text -