Changeset 1216 for trunk/src/kash/shinstance.h
- Timestamp:
- Oct 7, 2007, 11:15:21 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/shinstance.h
r1214 r1216 120 120 * running in a thread and not a separate process. 121 121 */ 122 typedefstruct shinstance122 struct shinstance 123 123 { 124 124 struct shinstance *next; /**< The next shell instance. */ … … 324 324 struct t_op const *t_wp_op; 325 325 326 } shinstance;326 }; 327 327 328 328 … … 376 376 #include <time.h> 377 377 #ifdef _MSC_VER 378 typedef struct sh _tms378 typedef struct shtms 379 379 { 380 380 clock_t tms_utime; … … 382 382 clock_t tms_cutime; 383 383 clock_t tms_cstime; 384 } sh _tms;384 } shtms; 385 385 #else 386 386 # 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 389 clock_t sh_times(shinstance *, shtms *); 391 390 int sh_sysconf_clk_tck(void); 392 391
Note:
See TracChangeset
for help on using the changeset viewer.