diff options
author | ru <ru@FreeBSD.org> | 2006-10-13 20:28:58 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2006-10-13 20:28:58 +0000 |
commit | b942ce05ed4fe8f4c5c98ab3ddf0e88321288492 (patch) | |
tree | bd5ac6f07204ff0cb7aa8d45053eeb66d3e540a9 /lib/libc/i386 | |
parent | d21c14576eaf56bfff093b5430e437b27cd11675 (diff) | |
download | FreeBSD-src-b942ce05ed4fe8f4c5c98ab3ddf0e88321288492.zip FreeBSD-src-b942ce05ed4fe8f4c5c98ab3ddf0e88321288492.tar.gz |
Some word smithing adopted from the PR.
PR: docs/54451
Originally by: Andreas Fuchs
Adopted by: jhb
MFC after: 3 days
Diffstat (limited to 'lib/libc/i386')
-rw-r--r-- | lib/libc/i386/sys/i386_get_ldt.2 | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/lib/libc/i386/sys/i386_get_ldt.2 b/lib/libc/i386/sys/i386_get_ldt.2 index 135d8b8..8a02667 100644 --- a/lib/libc/i386/sys/i386_get_ldt.2 +++ b/lib/libc/i386/sys/i386_get_ldt.2 @@ -52,24 +52,24 @@ The .Fn i386_get_ldt system call -will return the list of i386 descriptors that the process has in its +returns a list of the i386 descriptors in the current process' LDT. The .Fn i386_set_ldt system call -will set a list of i386 descriptors for the current process in its +sets a list of i386 descriptors in the current process' LDT. -Both routines accept a starting selector number -.Fa start_sel , -an array of memory that -will contain the descriptors to be set or returned -.Fa descs , -and the number of entries to set or return -.Fa num_sels . +For both routines, +.Fa start_sel +specifies the index of the selector in the LDT at which to begin and +.Fa descs +points to an array of +.Fa num_sels +descriptors to be set or returned. .Pp -The argument +Each entry in the .Fa descs -can be either segment_descriptor or gate_descriptor and are defined in +array can be either a segment_descriptor or gate_descriptor and are defined in .In i386/segments.h . These structures are defined by the architecture as disjoint bit-fields, so care must be taken in constructing them. @@ -113,9 +113,9 @@ returns the number of descriptors currently in the LDT. The .Fn i386_set_ldt system call -returns the first selector set. -In the case when a descriptor is allocated by the kernel, its number will -be returned. +returns the first selector set on success. +If the kernel allocated a descriptor in the LDT, +the allocated index is returned. Otherwise, a value of -1 is returned and the global variable .Va errno |