- Added triple axis scan command.

- Introduced simulation mode to simdriv and simcter, i.e they never fail and
  finish at once.
- Started defining MAD compatibility commands in Tcl
- Fixed a bug in FOCUS_src which caused it to leak sockets.
- Introduced setsockopt SO_REUSEADDR to all new sockets in sinqhm in order
  to loose the next sinqhm error.
This commit is contained in:
cvs
2000-12-05 09:05:03 +00:00
parent e83d3e6946
commit 876396bb7e
22 changed files with 2000 additions and 58 deletions

View File

@ -41,7 +41,7 @@
extern void *NXpData;
extern void (*NXIReportError)(void *pData, char *pBuffer);
/*--------------------------------------------------------------------------*/
/* #define DEFDEBUG 1*/
/*#define DEFDEBUG 1*/
/* define DEFDEBUG when you wish to print your definition strings before
action. This can help a lot to resolve mysteries when working with
dictionaries.
@ -682,7 +682,7 @@
{"-LZW",DLZW},
{"-HUF",DHUF},
{"-RLE",DRLE},
{"",0} };
{NULL,0} };
/*-----------------------------------------------------------------------*/
static void NXDIDefToken(ParDat *sStat)
@ -995,7 +995,7 @@
{"DFNT_INT32",DFNT_INT32},
{"DFNT_UINT32",DFNT_UINT32},
{"DFNT_CHAR",DFNT_CHAR},
{"",0} };
{NULL,-122} };
@ -1088,7 +1088,7 @@
iRank = atoi(pParse->pToken);
break;
case DDIM:
iRet = NXDIParseDim (pParse, (int *) iDim);
iRet = NXDIParseDim(pParse, iDim);
if(iRet == NX_ERROR)
{
LLDdelete(iList);
@ -1153,7 +1153,7 @@
/* we need to create it, if we may */
if(pParse->iMayCreate)
{
iRet = NXmakedata (hfil, pName, iType, iRank, (int *) iDim);
iRet = NXmakedata(hfil,pName,iType, iRank,iDim);
if(iRet != NX_OK)
{
/* a comment on this one has already been written! */