Changeset dc0898 in git for Singular/mod2.h.in


Ignore:
Timestamp:
Aug 2, 2000, 3:40:33 PM (24 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
ff4e84752079c82f72d2cff28527ed1b217ac9be
Parents:
e03066780716d0feba708e2349c879d0957c6ff2
Message:
* solved system problem under HPUX


git-svn-id: file:///usr/local/Singular/svn/trunk@4502 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/mod2.h.in

    re03066 rdc0898  
    66 *          DO NOT EDIT!
    77 *
    8  *  Version: $Id: mod2.h.in,v 1.82 2000-04-27 10:07:09 obachman Exp $
     8 *  Version: $Id: mod2.h.in,v 1.83 2000-08-02 13:40:33 obachman Exp $
    99 *******************************************************************/
    1010#ifndef MOD2_H
     
    272272#define MM_COUNT 1
    273273
     274/* Under HPUX 9, system(...) returns -1 if SIGCHLD does not equal
     275   SIG_DFL. However, if it stays at SIG_DFL we get zombie processes
     276   for terminated childs generated by fork. Therefors some special treatment
     277   is necessary */
     278#ifdef HPUX_9
     279#include <stdlib.h>
     280#define system hpux9_system
     281#ifdef __cplusplus
     282extern "C" {
     283#endif
     284int hpux9_system(const char* system);
     285#ifdef __cplusplus
     286}
     287#endif
     288#endif
    274289
    275290#ifndef HAVE_LIBPARSER
Note: See TracChangeset for help on using the changeset viewer.