2015-07-17 06:41:28 +08:00
|
|
|
/* ----------------------------------------------------------------------
|
|
|
|
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
|
|
|
|
http://lammps.sandia.gov, Sandia National Laboratories
|
|
|
|
Steve Plimpton, sjplimp@sandia.gov
|
|
|
|
|
|
|
|
Copyright (2003) Sandia Corporation. Under the terms of Contract
|
|
|
|
DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
|
|
|
|
certain rights in this software. This software is distributed under
|
|
|
|
the GNU General Public License.
|
|
|
|
|
|
|
|
See the README file in the top-level LAMMPS directory.
|
|
|
|
------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------
|
|
|
|
Contributing author: Axel Kohlmeyer (Temple U)
|
|
|
|
------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
#include "string.h"
|
|
|
|
#include "info.h"
|
|
|
|
#include "atom.h"
|
|
|
|
#include "comm.h"
|
|
|
|
#include "compute.h"
|
|
|
|
#include "domain.h"
|
|
|
|
#include "dump.h"
|
|
|
|
#include "fix.h"
|
|
|
|
#include "force.h"
|
|
|
|
#include "group.h"
|
|
|
|
#include "input.h"
|
|
|
|
#include "modify.h"
|
|
|
|
#include "output.h"
|
|
|
|
#include "region.h"
|
|
|
|
#include "universe.h"
|
|
|
|
#include "variable.h"
|
|
|
|
#include "update.h"
|
|
|
|
#include "error.h"
|
|
|
|
|
2015-07-18 01:25:22 +08:00
|
|
|
#include <time.h>
|
|
|
|
|
2015-07-17 06:41:28 +08:00
|
|
|
#ifdef _WIN32
|
|
|
|
#define PSAPI_VERSION=1
|
|
|
|
#include <windows.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <psapi.h>
|
|
|
|
#else
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined __linux
|
|
|
|
#include <malloc.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace LAMMPS_NS {
|
|
|
|
// same as in variable.cpp
|
2015-07-18 01:25:22 +08:00
|
|
|
enum {INDEX,LOOP,WORLD,UNIVERSE,ULOOP,STRING,GETENV,
|
|
|
|
SCALARFILE,ATOMFILE,FORMAT,EQUAL,ATOM,PYTHON};
|
|
|
|
|
|
|
|
enum {COMPUTES=1<<0,
|
|
|
|
DUMPS=1<<1,
|
|
|
|
FIXES=1<<2,
|
|
|
|
GROUPS=1<<3,
|
|
|
|
REGIONS=1<<4,
|
|
|
|
CONFIG=1<<5,
|
|
|
|
TIME=1<<6,
|
|
|
|
VARIABLES=1<<7,
|
|
|
|
SYSTEM=1<<8,
|
|
|
|
ALL=~0};
|
2015-07-17 06:41:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *varstyles[] = {
|
|
|
|
"index", "loop", "world", "universe", "uloop", "string", "getenv",
|
|
|
|
"file", "atomfile", "format", "equal", "atom", "python", "(unknown)"};
|
|
|
|
|
|
|
|
static const char *mapstyles[] = { "none", "array", "hash" };
|
|
|
|
|
|
|
|
static const char bstyles[] = "pfsm";
|
|
|
|
|
|
|
|
using namespace LAMMPS_NS;
|
|
|
|
|
|
|
|
/* ---------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
void Info::command(int narg, char **arg)
|
|
|
|
{
|
2015-07-18 01:25:22 +08:00
|
|
|
FILE *out=screen;
|
|
|
|
int flags=0;
|
|
|
|
|
|
|
|
if (comm->me != 0) return;
|
|
|
|
|
|
|
|
// parse arguments
|
|
|
|
int idx = 0;
|
|
|
|
|
|
|
|
while (idx < narg) {
|
|
|
|
if (strncmp(arg[idx],"all",3) == 0) {
|
|
|
|
flags |= ALL;
|
|
|
|
++idx;
|
|
|
|
} else if ((idx+1 < narg) && (strncmp(arg[idx],"out",3) == 0)
|
|
|
|
&& (strncmp(arg[idx+1],"screen",3) == 0)) {
|
|
|
|
out = screen;
|
|
|
|
idx += 2;
|
|
|
|
} else if ((idx+1 < narg) && (strncmp(arg[idx],"out",3) == 0)
|
|
|
|
&& (strncmp(arg[idx+1],"log",3) == 0)) {
|
|
|
|
out = logfile;
|
|
|
|
idx += 2;
|
|
|
|
} else if ((idx+2 < narg) && (strncmp(arg[idx],"out",3) == 0)
|
|
|
|
&& (strncmp(arg[idx+1],"append",3) == 0)) {
|
|
|
|
out = fopen(arg[idx+2],"a");
|
|
|
|
idx += 3;
|
|
|
|
} else if ((idx+2 < narg) && (strncmp(arg[idx],"out",3) == 0)
|
|
|
|
&& (strncmp(arg[idx+1],"overwrite",3) == 0)) {
|
|
|
|
out = fopen(arg[idx+2],"w");
|
|
|
|
idx += 3;
|
|
|
|
} else if (strncmp(arg[idx],"computes",3) == 0) {
|
|
|
|
flags |= COMPUTES;
|
|
|
|
++idx;
|
2015-07-17 06:41:28 +08:00
|
|
|
} else if (strncmp(arg[idx],"dumps",3) == 0) {
|
2015-07-18 01:25:22 +08:00
|
|
|
flags |= DUMPS;
|
|
|
|
++idx;
|
2015-07-17 06:41:28 +08:00
|
|
|
} else if (strncmp(arg[idx],"fixes",3) == 0) {
|
2015-07-18 01:25:22 +08:00
|
|
|
flags |= FIXES;
|
|
|
|
++idx;
|
2015-07-17 06:41:28 +08:00
|
|
|
} else if (strncmp(arg[idx],"groups",3) == 0) {
|
2015-07-18 01:25:22 +08:00
|
|
|
flags |= GROUPS;
|
|
|
|
++idx;
|
2015-07-17 06:41:28 +08:00
|
|
|
} else if (strncmp(arg[idx],"regions",3) == 0) {
|
2015-07-18 01:25:22 +08:00
|
|
|
flags |= REGIONS;
|
|
|
|
++idx;
|
|
|
|
} else if (strncmp(arg[idx],"config",3) == 0) {
|
|
|
|
flags |= CONFIG;
|
|
|
|
++idx;
|
|
|
|
} else if (strncmp(arg[idx],"time",3) == 0) {
|
|
|
|
flags |= TIME;
|
|
|
|
++idx;
|
|
|
|
} else if (strncmp(arg[idx],"variables",3) == 0) {
|
|
|
|
flags |= VARIABLES;
|
|
|
|
++idx;
|
|
|
|
} else if (strncmp(arg[idx],"system",3) == 0) {
|
|
|
|
flags |= SYSTEM;
|
|
|
|
++idx;
|
|
|
|
} else {
|
|
|
|
error->warning(FLERR,"Ignoring unknown or incorrect info command flag");
|
|
|
|
++idx;
|
|
|
|
}
|
|
|
|
}
|
2015-07-17 06:41:28 +08:00
|
|
|
|
2015-07-18 01:25:22 +08:00
|
|
|
if (out == NULL) return;
|
|
|
|
|
|
|
|
fputs("\nInfo-Info-Info-Info-Info-Info-Info-Info-Info-Info-Info\n",out);
|
|
|
|
time_t now = time(NULL);
|
|
|
|
fprintf(out,"Printed on %s\n",ctime(&now));
|
|
|
|
|
|
|
|
if (flags & CONFIG) {
|
|
|
|
|
|
|
|
fprintf(out,"\nLAMMPS version: %s\n", universe->version);
|
|
|
|
fprintf(out,"sizeof(smallint): %3d-bit\n",(int)sizeof(smallint)*8);
|
|
|
|
fprintf(out,"sizeof(imageint): %3d-bit\n",(int)sizeof(imageint)*8);
|
|
|
|
fprintf(out,"sizeof(tagint): %3d-bit\n",(int)sizeof(tagint)*8);
|
|
|
|
fprintf(out,"sizeof(bigint): %3d-bit\n",(int)sizeof(bigint)*8);
|
2015-07-17 06:41:28 +08:00
|
|
|
|
|
|
|
#if defined(_WIN32)
|
2015-07-18 01:25:22 +08:00
|
|
|
DWORD fullversion,majorv,minorv,buildv=0;
|
|
|
|
|
|
|
|
fullversion = GetVersion();
|
|
|
|
majorv = (DWORD) (LOBYTE(LOWORD(fullversion)));
|
|
|
|
minorv = (DWORD) (HIBYTE(LOWORD(fullversion)));
|
|
|
|
if (fullversion < 0x80000000)
|
|
|
|
buildv = (DWORD) (HIWORD(fullversion));
|
|
|
|
|
|
|
|
SYSTEM_INFO si;
|
|
|
|
GetSystemInfo(&si);
|
|
|
|
|
|
|
|
const char *machine;
|
|
|
|
switch (si.wProcessorArchitecture) {
|
|
|
|
case PROCESSOR_ARCHITECTURE_AMD64:
|
|
|
|
machine = (const char *) "x86_64";
|
|
|
|
break;
|
|
|
|
case PROCESSOR_ARCHITECTURE_ARM:
|
|
|
|
machine = (const char *) "arm";
|
|
|
|
break;
|
|
|
|
case PROCESSOR_ARCHITECTURE_IA64:
|
|
|
|
machine = (const char *) "ia64";
|
|
|
|
break;
|
|
|
|
case PROCESSOR_ARCHITECTURE_INTEL:
|
|
|
|
machine = (const char *) "i386";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
machine = (const char *) "(unknown)";
|
|
|
|
}
|
|
|
|
fprintf(out,"\nOS information: Windows %d.%d (%d) on %s\n",
|
|
|
|
majorv,minorv,buildv,machine);
|
2015-07-17 06:41:28 +08:00
|
|
|
#else
|
2015-07-18 01:25:22 +08:00
|
|
|
struct utsname ut;
|
|
|
|
uname(&ut);
|
|
|
|
fprintf(out,"\nOS information: %s %s on %s\n",
|
|
|
|
ut.sysname, ut.release, ut.machine);
|
2015-07-17 06:41:28 +08:00
|
|
|
#endif
|
|
|
|
|
2015-07-18 01:25:22 +08:00
|
|
|
fprintf(out,"\nMemory allocation information (MPI rank 0)\n");
|
2015-07-17 06:41:28 +08:00
|
|
|
|
|
|
|
#if defined(_WIN32)
|
2015-07-18 01:25:22 +08:00
|
|
|
HANDLE phandle = GetCurrentProcess();
|
|
|
|
PROCESS_MEMORY_COUNTERS_EX pmc;
|
|
|
|
GetProcessMemoryInfo(phandle,(PROCESS_MEMORY_COUNTERS *)&pmc,sizeof(pmc));
|
|
|
|
fprintf(out,"Non-shared memory use: %.3g Mbyte\n",
|
|
|
|
(double)pmc.PrivateUsage/1048576.0);
|
|
|
|
fprintf(out,"Maximum working set size: %.3g Mbyte\n",
|
|
|
|
(double)pmc.PeakWorkingSetSize/1048576.0);
|
2015-07-17 06:41:28 +08:00
|
|
|
#else
|
|
|
|
#if defined(__linux)
|
2015-07-18 01:25:22 +08:00
|
|
|
struct mallinfo mi;
|
|
|
|
mi = mallinfo();
|
|
|
|
fprintf(out,"Total dynamically allocated memory: %.3g Mbyte\n",
|
|
|
|
(double)mi.uordblks/1048576.0);
|
2015-07-17 06:41:28 +08:00
|
|
|
#endif
|
2015-07-18 01:25:22 +08:00
|
|
|
struct rusage ru;
|
|
|
|
if (getrusage(RUSAGE_SELF, &ru) == 0) {
|
|
|
|
fprintf(out,"Maximum resident set size: %.3g Mbyte\n",
|
|
|
|
(double)ru.ru_maxrss/1024.0);
|
|
|
|
}
|
2015-07-17 06:41:28 +08:00
|
|
|
#endif
|
2015-07-18 01:25:22 +08:00
|
|
|
}
|
2015-07-17 06:41:28 +08:00
|
|
|
|
2015-07-18 01:25:22 +08:00
|
|
|
if (flags & SYSTEM) {
|
|
|
|
fprintf(out,"\nSystem information:\n");
|
|
|
|
fprintf(out,"Units = %s\n",update->unit_style);
|
|
|
|
fprintf(out,"Atom style = %s\n", atom->atom_style);
|
|
|
|
fprintf(out,"Atom map = %s\n", mapstyles[atom->map_style]);
|
|
|
|
if (atom->molecular > 0) {
|
|
|
|
const char *msg;
|
|
|
|
msg = (atom->molecular == 2) ? "template" : "standard";
|
|
|
|
fprintf(out,"Molecule type = %s\n",msg);
|
|
|
|
}
|
|
|
|
fprintf(out,"Atoms: " BIGINT_FORMAT ", types: %d, style: %s\n",
|
|
|
|
atom->natoms, atom->ntypes, force->pair_style);
|
|
|
|
|
|
|
|
if (atom->molecular > 0) {
|
|
|
|
const char *msg;
|
|
|
|
msg = force->bond_style ? force->bond_style : "none";
|
|
|
|
fprintf(out,"Bonds: " BIGINT_FORMAT ", types: %d, style: %s\n",
|
|
|
|
atom->nbonds, atom->nbondtypes, msg);
|
|
|
|
|
|
|
|
msg = force->angle_style ? force->angle_style : "none";
|
|
|
|
fprintf(out,"Angles: " BIGINT_FORMAT ", types: %d, style: %s\n",
|
|
|
|
atom->nangles, atom->nangletypes, msg);
|
|
|
|
|
|
|
|
msg = force->dihedral_style ? force->dihedral_style : "none";
|
|
|
|
fprintf(out,"Dihedrals: " BIGINT_FORMAT ", types: %d, style: %s\n",
|
|
|
|
atom->ndihedrals, atom->ndihedraltypes, msg);
|
|
|
|
|
|
|
|
msg = force->improper_style ? force->improper_style : "none";
|
|
|
|
fprintf(out,"Impropers: " BIGINT_FORMAT ", types: %d, style: %s\n",
|
|
|
|
atom->nimpropers, atom->nimpropertypes, msg);
|
|
|
|
|
|
|
|
const double * const special_lj = force->special_lj;
|
|
|
|
const double * const special_coul = force->special_coul;
|
|
|
|
|
|
|
|
fprintf(out,"Special bond factors lj: %-10g %-10g %-10g\n"
|
|
|
|
"Special bond factors coul: %-10g %-10g %-10g\n",
|
|
|
|
special_lj[1],special_lj[2],special_lj[3],
|
|
|
|
special_coul[1],special_coul[2],special_coul[3]);
|
|
|
|
}
|
2015-07-17 06:41:28 +08:00
|
|
|
|
2015-07-18 01:25:22 +08:00
|
|
|
fprintf(out,"Kspace style = %s\n",
|
|
|
|
force->kspace ? force->kspace_style : "none");
|
|
|
|
|
|
|
|
if (domain->box_exist) {
|
|
|
|
fprintf(out,"\n%s box: (%g x %g %g)\n",
|
|
|
|
domain->triclinic ? "Triclinic" : "Orthogonal",
|
|
|
|
domain->xprd, domain->yprd, domain->zprd);
|
|
|
|
fprintf(out,"Boundaries = %c,%c %c,%c %c,%c\n",
|
|
|
|
bstyles[domain->boundary[0][0]],bstyles[domain->boundary[0][1]],
|
|
|
|
bstyles[domain->boundary[1][0]],bstyles[domain->boundary[1][1]],
|
|
|
|
bstyles[domain->boundary[2][0]],bstyles[domain->boundary[2][1]]);
|
|
|
|
fprintf(out,"Xlo, zhi = %g, %g\n", domain->boxlo[0], domain->boxhi[0]);
|
|
|
|
fprintf(out,"Ylo, zhi = %g, %g\n", domain->boxlo[1], domain->boxhi[1]);
|
|
|
|
fprintf(out,"Zlo, zhi = %g, %g\n", domain->boxlo[2], domain->boxhi[2]);
|
|
|
|
if (domain->triclinic)
|
|
|
|
fprintf(out,"Xy, xz, yz = %g, %g, %g\n",
|
|
|
|
domain->xy, domain->xz, domain->yz);
|
|
|
|
} else {
|
|
|
|
fputs("\nBox has not yet been created\n",out);
|
|
|
|
}
|
|
|
|
}
|
2015-07-17 06:41:28 +08:00
|
|
|
|
2015-07-18 01:25:22 +08:00
|
|
|
if (flags & GROUPS) {
|
|
|
|
int ngroup = group->ngroup;
|
|
|
|
char **names = group->names;
|
|
|
|
int *dynamic = group->dynamic;
|
|
|
|
fprintf(out,"\nGroup information:\n");
|
|
|
|
for (int i=0; i < ngroup; ++i) {
|
|
|
|
fprintf(out,"Group[%2d]: %s (%s)\n",
|
|
|
|
i, names[i], dynamic[i] ? "dynamic" : "static");
|
|
|
|
}
|
|
|
|
}
|
2015-07-17 06:41:28 +08:00
|
|
|
|
2015-07-18 01:25:22 +08:00
|
|
|
if (flags & REGIONS) {
|
|
|
|
int nreg = domain->nregion;
|
|
|
|
Region **regs = domain->regions;
|
|
|
|
fprintf(out,"\nRegion information:\n");
|
|
|
|
for (int i=0; i < nreg; ++i) {
|
|
|
|
fprintf(out,"Region[%3d]: %s, style: %s, side: %s\n",
|
|
|
|
i, regs[i]->id, regs[i]->style,
|
|
|
|
regs[i]->interior ? "in" : "out");
|
|
|
|
}
|
2015-07-17 06:41:28 +08:00
|
|
|
}
|
|
|
|
|
2015-07-18 01:25:22 +08:00
|
|
|
if (flags & COMPUTES) {
|
|
|
|
int ncompute = modify->ncompute;
|
|
|
|
Compute **compute = modify->compute;
|
|
|
|
char **names = group->names;
|
|
|
|
fprintf(out,"\nCompute information:\n");
|
|
|
|
for (int i=0; i < ncompute; ++i) {
|
|
|
|
fprintf(out,"Compute[%3d]: %s, style: %s, group: %s\n",
|
|
|
|
i, compute[i]->id, compute[i]->style,
|
|
|
|
names[compute[i]->igroup]);
|
|
|
|
}
|
|
|
|
}
|
2015-07-17 06:41:28 +08:00
|
|
|
|
2015-07-18 01:25:22 +08:00
|
|
|
if (flags & DUMPS) {
|
|
|
|
int ndump = output->ndump;
|
|
|
|
Dump **dump = output->dump;
|
|
|
|
int *nevery = output->every_dump; \
|
|
|
|
char **vnames = output->var_dump;
|
|
|
|
char **names = group->names;
|
|
|
|
fprintf(out,"\nDump information:\n");
|
|
|
|
for (int i=0; i < ndump; ++i) {
|
|
|
|
fprintf(out,"Dump[%3d]: %s, file: %s, style: %s, group: %s, ",
|
|
|
|
i, dump[i]->id, dump[i]->filename,
|
|
|
|
dump[i]->style, names[dump[i]->igroup]);
|
|
|
|
if (nevery[i]) {
|
|
|
|
fprintf(out,"every: %d\n", nevery[i]);
|
|
|
|
} else {
|
|
|
|
fprintf(out,"every: %s\n", vnames[i]);
|
2015-07-17 06:41:28 +08:00
|
|
|
}
|
2015-07-18 01:25:22 +08:00
|
|
|
}
|
|
|
|
}
|
2015-07-17 06:41:28 +08:00
|
|
|
|
2015-07-18 01:25:22 +08:00
|
|
|
if (flags & FIXES) {
|
|
|
|
int nfix = modify->nfix;
|
|
|
|
Fix **fix = modify->fix;
|
|
|
|
char **names = group->names;
|
|
|
|
fprintf(out,"\nFix information:\n");
|
|
|
|
for (int i=0; i < nfix; ++i) {
|
|
|
|
fprintf(out,"Fix[%3d]: %s, style: %s, group: %s\n",
|
|
|
|
i, fix[i]->id, fix[i]->style, names[fix[i]->igroup]);
|
|
|
|
}
|
|
|
|
}
|
2015-07-17 06:41:28 +08:00
|
|
|
|
2015-07-18 01:25:22 +08:00
|
|
|
if (flags & VARIABLES) {
|
|
|
|
int nvar = input->variable->nvar;
|
|
|
|
int *style = input->variable->style;
|
|
|
|
char **names = input->variable->names;
|
|
|
|
char ***data = input->variable->data;
|
|
|
|
fprintf(out,"\nVariable information:\n");
|
|
|
|
for (int i=0; i < nvar; ++i) {
|
|
|
|
int ndata = 1;
|
|
|
|
fprintf(out,"Variable[%3d]: %-10s style = %-10s def =",
|
|
|
|
i,names[i],varstyles[style[i]]);
|
|
|
|
if ((style[i] != LOOP) && (style[i] != ULOOP))
|
|
|
|
ndata = input->variable->num[i];
|
|
|
|
for (int j=0; j < ndata; ++j)
|
|
|
|
fprintf(out," %s",data[i][j]);
|
|
|
|
fputs("\n",out);
|
|
|
|
}
|
|
|
|
}
|
2015-07-17 06:41:28 +08:00
|
|
|
|
2015-07-18 01:25:22 +08:00
|
|
|
if (flags & TIME) {
|
|
|
|
double wallclock = MPI_Wtime() - lmp->initclock;
|
|
|
|
double cpuclock = 0.0;
|
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
// from MSD docs.
|
|
|
|
FILETIME ct,et,kt,ut;
|
|
|
|
union { FILETIME ft; uint64_t ui; } cpu;
|
|
|
|
if (GetProcessTimes(GetCurrentProcess(),&ct,&et,&kt,&ut)) {
|
|
|
|
cpu.ft = ut;
|
|
|
|
cpuclock = cpu.ui * 0.0000001;
|
|
|
|
}
|
|
|
|
#else /* POSIX */
|
|
|
|
struct rusage ru;
|
|
|
|
if (getrusage(RUSAGE_SELF, &ru) == 0) {
|
|
|
|
cpuclock = (double) ru.ru_utime.tv_sec;
|
|
|
|
cpuclock += (double) ru.ru_utime.tv_usec * 0.000001;
|
2015-07-17 06:41:28 +08:00
|
|
|
}
|
2015-07-18 01:25:22 +08:00
|
|
|
#endif /* ! _WIN32 */
|
|
|
|
|
|
|
|
int cpuh,cpum,cpus,wallh,wallm,walls;
|
|
|
|
cpus = fmod(cpuclock,60.0);
|
|
|
|
cpuclock = (cpuclock - cpus) / 60.0;
|
|
|
|
cpum = fmod(cpuclock,60.0);
|
|
|
|
cpuh = (cpuclock - cpum) / 60.0;
|
|
|
|
walls = fmod(wallclock,60.0);
|
|
|
|
wallclock = (wallclock - walls) / 60.0;
|
|
|
|
wallm = fmod(wallclock,60.0);
|
|
|
|
wallh = (wallclock - wallm) / 60.0;
|
|
|
|
fprintf(out,"\nTotal time information (MPI rank 0):\n"
|
|
|
|
" CPU time: %4d:%02d:%02d\n"
|
|
|
|
" Wall time: %4d:%02d:%02d\n",
|
|
|
|
cpuh,cpum,cpus,wallh,wallm,walls);
|
2015-07-17 06:41:28 +08:00
|
|
|
}
|
|
|
|
|
2015-07-18 01:25:22 +08:00
|
|
|
fputs("\nInfo-Info-Info-Info-Info-Info-Info-Info-Info-Info-Info\n\n",out);
|
|
|
|
|
|
|
|
// close output file pointer if opened locally thus forcing a hard sync.
|
|
|
|
if ((out != screen) && (out != logfile))
|
|
|
|
fclose(out);
|
2015-07-17 06:41:28 +08:00
|
|
|
}
|