Previous Next

L

LAN
Local area network. A group of computers and other devices dispersed over a relatively limited area and connected by a communications link that enables any device to interact with any other device on the network.

Compare with WAN.

language monitor
A type of print monitor that provides a full-duplex communications path between the print spooler and bidirectional printers. It can also add printer control information to the data stream.
latched interrupt
An interrupt that occurs at the transition from deasserted to asserted on the IRQ line.

Also called an edge-triggered interrupt.

layered driver
One of a collection of drivers that respond to the same IRPs.

See class driver and intermediate driver.

For more information see the topic, Layered Driver Architecture.

LBN
Logical block number. A logical block number identifies a physical block on a disk, using a logical address rather than physical disk values (for cylinder, track, and sector). For a disk with N blocks (in other words, "sectors"), the corresponding LBNs are numbered 0 through (N – 1).

See also MCB and VBN.

legacy driver
A Windows driver that does not support WDM. Legacy drivers usually do not support Plug and Play or power management. When possible, these drivers should be upgraded.

For more information see the topic, Upgrading a Legacy Driver.

level-sensitive interrupt
An interrupt that occurs when the signal is asserted on the IRQ line.
linear frame buffer
Dedicated memory on a video adapter, that can hold the contents of a single screen image. A linear frame buffer is one in which the memory is linearly addressable, or "flat." This is in contrast to banked frame buffers, in which memory is partitioned into segments, or "banks."
little-endian
Refers to a processor memory architecture in which the byte layout is as follows:

The address of the preceding word, doubleword, or K-byte entity is its least significant byte, N.

Intel microprocessors always support little-endian addressing. Some RISC microprocessors can be configured for either big-endian or little-endian addressing. For a little-endian configuration, the least significant bit of a 16-bit short value is the "rightmost" bit at byte N, while the most significant bit is the "leftmost" bit of byte (N + 1).

See also big-endian.

local bus
Usually refers to a system bus that is directly connected to the microprocessor on a system board. Used colloquially to refer to system board buses located closer to the microprocessor than are ordinary expansion buses (that is, with less buffering). This proximity to the microprocessor means that system board buses are capable of greater throughput.
logical memory
A HAL-provided mapping between system physical memory and a device-accessible address range.

See also map.

lookaside list
A system-managed queue from which entries of a fixed size can be allocated and into which entries can be deallocated dynamically. Callers of the Ex(ecutive) Support lookaside list routines can use a lookaside list to manage any dynamically sized set of fixed-size buffers or structures with caller-determined contents.

For example, the I/O Manager uses a lookaside for fast allocation and deallocation of IRPs and MDLs. As another example, some of the system-supplied SCSI class drivers use lookaside lists to allocate and release memory for SRBs.