home *** CD-ROM | disk | FTP | other *** search
/ ftp.4front-tech.com / ftp.4front-tech.com.tar / ftp.4front-tech.com / ossfree / snd-util-3.8.tar.gz / snd-util-3.8.tar / sndkit / dsp / help.c next >
C/C++ Source or Header  |  1996-07-30  |  2KB  |  68 lines

  1. /*
  2.  * help.c
  3.  *
  4.  * Some error printing routines.
  5.  * 
  6.  * Copyright by Hannu Savolainen 1993
  7.  * 
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions are
  10.  * met: 1. Redistributions of source code must retain the above copyright
  11.  * notice, this list of conditions and the following disclaimer. 2.
  12.  * Redistributions in binary form must reproduce the above copyright notice,
  13.  * this list of conditions and the following disclaimer in the documentation
  14.  * and/or other materials provided with the distribution.
  15.  * 
  16.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY
  17.  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19.  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
  20.  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  21.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  22.  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  23.  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  24.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  25.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  26.  * SUCH DAMAGE.
  27.  * 
  28.  */
  29. #include <stdio.h>
  30. #include <errno.h>
  31.  
  32. void describe_error(void)
  33. {
  34.     switch (errno)
  35.     {
  36.     case ENXIO:
  37.     case ENODEV:
  38.         fprintf(stderr,    "The device file was found in /dev but\n"
  39.                 "there is no driver for it in the kernel.\n"
  40.                 "\n"
  41.                 "There is several possible reasons:\n"
  42.                 "- The sound driver is not present\n"
  43.                 "  in the kernel you are currently running.\n"
  44.                 "- The driver is in the kernel but there is\n"
  45.                 "  no soundcard on your system.\n"
  46.                 "- Configuration of the sound driver doesn't\n"
  47.                 "  match the hardware.\n"
  48.                 "\n"
  49.                 "Try cat /dev/sndstat for further info.\n");
  50.         break;
  51.  
  52.     case ENOSPC:
  53.         fprintf(stderr,    "The soundcard driver was not installed\n"
  54.                 "properly. The sound_mem_init() routine\n"
  55.                 "was not called during the boot procedure.\n");
  56.         break;
  57.  
  58.     case ENOENT:
  59.         fprintf(stderr,    "The device file is missing from /dev.\n"
  60.                 "Run the script at the end of file\n"
  61.                 "sound/linux/Readme (distributed with\n"
  62.                 "the sound driver.\n");
  63.         break;
  64.  
  65.     default: ;
  66.     }
  67. }
  68.