Safe Haskell | None |
---|
System.PosixCompat.Extensions
Contents
Description
This module provides some functions not present in the unix package.
- type CMajor = CUInt
- type CMinor = CUInt
- deviceMajor :: DeviceID -> CMajor
- deviceMinor :: DeviceID -> CMinor
- makeDeviceID :: CMajor -> CMinor -> DeviceID
Device IDs.
deviceMajor :: DeviceID -> CMajorSource
Gets the major number from a DeviceID
for a device file.
The portable implementation always returns 0
.
deviceMinor :: DeviceID -> CMinorSource
Gets the minor number from a DeviceID
for a device file.
The portable implementation always returns 0
.