signal ()
{
  if [ -n "${CHARACTER_DELAY}" ]
  then
    sleep "${CHARACTER_DELAY}"
  fi
  if [ -z ${KMSG} ]
  then
    echo "${1}"
  else
    echo "<0>${1}" > /dev/kmsg
  fi
}
