Signal.3
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 2001 ActiveState Tool Corp.
  3. '"
  4. '" See the file "license.terms" for information on usage and redistribution
  5. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  6. '" 
  7. '" RCS: @(#) $Id: Signal.3,v 1.2 2002/01/15 21:19:06 dgp Exp $
  8. .so man.macros
  9. .TH Tcl_SignalId 3 8.3 Tcl "Tcl Library Procedures"
  10. .BS
  11. .SH NAME
  12. Tcl_SignalId, Tcl_SignalMsg - Convert signal codes
  13. .SH SYNOPSIS
  14. .nf
  15. fB#include <tcl.h>fR
  16. .sp
  17. CONST char *
  18. fBTcl_SignalIdfR(fIsigfR)
  19. .sp
  20. CONST char *
  21. fBTcl_SignalMsgfR(fIsigfR)
  22. .sp
  23. .SH ARGUMENTS
  24. .AP int sig in
  25. A POSIX signal number such as fBSIGPIPEfR.
  26. .BE
  27. .SH DESCRIPTION
  28. .PP
  29. fBTcl_SignalIdfR and fBTcl_SignalMsgfR return a string
  30. representation of the provided signal number (fIsigfR).
  31. fBTcl_SignalIdfR returns a machine-readable textual identifier such
  32. as "SIGPIPE". fBTcl_SignalMsgfR returns a human-readable string such
  33. as "bus error".  The strings returned by these functions are
  34. statically allocated and the caller must not free or modify them.
  35. .SH KEYWORDS
  36. signals, signal numbers