Changeset f8565a in git for Singular


Ignore:
Timestamp:
Jan 24, 2013, 12:59:30 PM (11 years ago)
Author:
Alexander Dreyer <adreyer@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
bc0d32def5d3461a77eed40c1e1a3d254811858a
Parents:
b8f8ea1509ff92e49428ea7c5713993cd700fbb6
git-author:
Alexander Dreyer <adreyer@gmx.de>2013-01-24 12:59:30+01:00
git-committer:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2013-04-09 15:33:47+02:00
Message:
Replaced some system calls by safely wrapped versions

from master
Location:
Singular
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/cntrlc.cc

    rb8f8ea rf8565a  
    2626#include <kernel/febase.h>
    2727void sig_chld_hdl(int sig); /*#include <Singular/links/ssiLink.h>*/
     28//#include <Singular/feOpt.h>
     29//#include <Singular/version.h>
     30//#include <Singular/silink.h>
     31//#include <Singular/ssiLink.h>
     32#include <Singular/si_signals.h>
    2833
    2934#include "tok.h"
  • Singular/iparith.cc

    rb8f8ea rf8565a  
    7979
    8080#include <polys/coeffrings.h>
     81#include <Singular/si_signals.h>
    8182
    8283lists rDecompose(const ring r);
     
    76517652    if (i_s > 0)
    76527653    {
    7653       sleep((is - 1)/1000000 + 1);
     7654      si_sleep((is - 1)/1000000 + 1);
    76547655      jjSTATUS3(res, v, v->next, v->next->next);
    76557656    }
  • Singular/sdb.cc

    rb8f8ea rf8565a  
    1717#include <Singular/ipid.h>
    1818#include <Singular/sdb.h>
     19#include <Singular/si_signals.h>
    1920
    2021#ifdef HAVE_SDB
     
    149150    if (pid!=0)
    150151    {
    151       wait(&pid);
     152      si_wait(&pid);
    152153    }
    153154    else if(pid==0)
Note: See TracChangeset for help on using the changeset viewer.