Changeset c9e72d1 for owl.h


Ignore:
Timestamp:
Nov 22, 2003, 11:33:00 AM (20 years ago)
Author:
Erik Nygren <nygren@mit.edu>
Branches:
master, barnowl_perlaim, debian, owl, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
1e34e40
Parents:
f1645da
Message:
	Catch SIGPIPE and print an error rather than crashing.
	        [It's possible that this may have some portability
		issues under Solaris and we may need to add some
		configure stuff around SA_SIGINFO...]
File:
1 edited

Legend:

Unmodified
Added
Removed
  • owl.h

    r52f3507 rc9e72d1  
    88#include <regex.h>
    99#include <time.h>
     10#include <signal.h>
    1011#include <libfaim/aim.h>
    1112#include "config.h"
     
    1920static const char owl_h_fileIdent[] = "$Id$";
    2021
    21 #define OWL_VERSION         2.0.13-pre-1
    22 #define OWL_VERSION_STRING "2.0.13-pre-1"
     22#define OWL_VERSION         2.0.13-pre-2
     23#define OWL_VERSION_STRING "2.0.13-pre-2"
    2324
    2425/* Feature that is being tested to redirect stderr through a pipe.
     
    486487  int havezephyr;
    487488  int haveaim;
     489  int got_err_signal;       /* 1 if we got an unexpected signal */
     490  siginfo_t err_signal_info;
    488491} owl_global;
    489492
Note: See TracChangeset for help on using the changeset viewer.