Ignore:
Timestamp:
Oct 7, 2007, 11:15:21 PM (18 years ago)
Author:
bird
Message:

more fixes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kash/shinstance.h

    r1214 r1216  
    120120 * running in a thread and not a separate process.
    121121 */
    122 typedef struct shinstance
     122struct shinstance
    123123{
    124124    struct shinstance  *next;           /**< The next shell instance. */
     
    324324    struct t_op const  *t_wp_op;
    325325
    326 } shinstance;
     326};
    327327
    328328
     
    376376#include <time.h>
    377377#ifdef _MSC_VER
    378     typedef struct sh_tms
     378    typedef struct shtms
    379379    {
    380380        clock_t tms_utime;
     
    382382        clock_t tms_cutime;
    383383        clock_t tms_cstime;
    384     } sh_tms;
     384    } shtms;
    385385#else
    386386#   include <sys/times.h>
    387 #   include <times.h>
    388     typedef struct tms sh_tms;
    389 #endif
    390 clock_t sh_times(sh_tms *);
     387    typedef struct tms shtms;
     388#endif
     389clock_t sh_times(shinstance *, shtms *);
    391390int sh_sysconf_clk_tck(void);
    392391
Note: See TracChangeset for help on using the changeset viewer.