The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/include/minix/cdrom.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /* This file contains some structures used by the Mitsumi cdrom driver.
    2  *
    3  *  Feb 13 1995                 Author: Michel R. Prevenier 
    4  */
    5 
    6 /* Index into the mss arrays */
    7 #define MINUTES 0
    8 #define SECONDS 1
    9 #define SECTOR  2
   10 
   11 struct cd_play_mss
   12 {
   13         u8_t    begin_mss[3];
   14         u8_t    end_mss[3];
   15 };
   16 
   17 struct cd_play_track
   18 {
   19         u8_t    begin_track;
   20         u8_t    end_track;
   21 };
   22 
   23 struct cd_disk_info
   24 {
   25         u8_t    first_track;
   26         u8_t    last_track;
   27         u8_t    disk_length_mss[3];
   28         u8_t    first_track_mss[3];
   29 };
   30 
   31 struct cd_toc_entry
   32 {
   33         u8_t    control_address;
   34         u8_t    track_nr;
   35         u8_t    index_nr;
   36         u8_t    track_time_mss[3];
   37         u8_t    reserved;
   38         u8_t    position_mss[3];
   39 };

Cache object: 6cf8519f07979ca7397b2b3b8fed5da0


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.