Changeset 36532
- Timestamp:
- Feb 18, 2014, 2:49:51 PM (12 years ago)
- Location:
- branches/eam_branches/ipp-20140206/Ohana/src/opihi
- Files:
-
- 6 edited
-
. (modified) (1 prop)
-
cmd.astro (modified) (1 prop)
-
cmd.data (modified) (1 prop)
-
dvo/dvo_client.c (modified) (1 diff)
-
lib.shell/stack_math.c (modified) (3 diffs)
-
pcontrol/CheckBusyJob.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ipp-20140206/Ohana/src/opihi
- Property svn:mergeinfo deleted
-
branches/eam_branches/ipp-20140206/Ohana/src/opihi/cmd.astro
- Property svn:mergeinfo deleted
-
branches/eam_branches/ipp-20140206/Ohana/src/opihi/cmd.data
- Property svn:mergeinfo deleted
-
branches/eam_branches/ipp-20140206/Ohana/src/opihi/dvo/dvo_client.c
r35263 r36532 90 90 } 91 91 92 // these are set in 'startup.c' for readline-based programs 93 set_variable ("PID", getpid()); 94 set_str_variable ("KAPA", "kapa"); 95 set_int_variable ("UNSIGN", 0); 96 gfits_set_unsign_mode (FALSE); 97 92 98 return; 93 99 } -
branches/eam_branches/ipp-20140206/Ohana/src/opihi/lib.shell/stack_math.c
r36489 r36532 1125 1125 if (!strcmp (op, "floor")) S_FUNC(floor (M1), ST_SCALAR_FLT); 1126 1126 if (!strcmp (op, "ceil")) S_FUNC(ceil (M1), ST_SCALAR_FLT); 1127 if (!strcmp (op, "rint")) S_FUNC(nearbyint (M1), ST_SCALAR_FLT);1127 // if (!strcmp (op, "rint")) S_FUNC(nearbyint (M1), ST_SCALAR_FLT); 1128 1128 if (!strcmp (op, "exp")) S_FUNC(exp (M1), ST_SCALAR_FLT); 1129 1129 if (!strcmp (op, "ten")) S_FUNC(pow (10.0,M1), ST_SCALAR_FLT); … … 1207 1207 if (!strcmp (op, "floor")) V_FUNC(floor (*M1), ST_SCALAR_FLT); 1208 1208 if (!strcmp (op, "ceil")) V_FUNC(ceil (*M1), ST_SCALAR_FLT); 1209 if (!strcmp (op, "rint")) V_FUNC(nearbyint (*M1), ST_SCALAR_FLT);1209 // if (!strcmp (op, "rint")) V_FUNC(nearbyint (*M1), ST_SCALAR_FLT); 1210 1210 if (!strcmp (op, "exp")) V_FUNC(exp(*M1), ST_SCALAR_FLT); 1211 1211 if (!strcmp (op, "ten")) V_FUNC(pow(10.0,*M1), ST_SCALAR_FLT); … … 1282 1282 if (!strcmp (op, "floor")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = floor (*M1); }} 1283 1283 if (!strcmp (op, "ceil")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = ceil (*M1); }} 1284 if (!strcmp (op, "rint")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = nearbyint (*M1); }}1284 // if (!strcmp (op, "rint")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = nearbyint (*M1); }} 1285 1285 1286 1286 if (!strcmp (op, "exp")) { for (i = 0; i < Nx*Ny; i++, out++, M1++) { *out = exp(*M1); }} -
branches/eam_branches/ipp-20140206/Ohana/src/opihi/pcontrol/CheckBusyJob.c
r28242 r36532 99 99 100 100 // XXX runaway job if output too large? 101 if (job[0].stdout_buf.size > 0x1000000 ) abort();102 if (job[0].stderr_buf.size > 0x1000000 ) abort();101 if (job[0].stdout_buf.size > 0x10000000) abort(); 102 if (job[0].stderr_buf.size > 0x10000000) abort(); 103 103 104 104 // job has exited : move to DONE stack
Note:
See TracChangeset
for help on using the changeset viewer.
