Jump to content

exit code 3 / ncdimdef


BRX
 Share

Recommended Posts

Hello!

I try to move and store many files and directories. I also call a DLL to create new files from data in existing files. Very recently, my script stops too early with the following message:

------8<-------

ncdimdef: NC_UNLIMITED size already in use: dimension "point_number" (index 8)

>Exit code: 3 Time: 481.490

------8<-------

I could not find a list of exit codes yet, so what does exit code 3 mean?

the line above the exit code (ncdimdef: ...) is a complete mystery to me. Can anybody explain this? is it coming from AutoIt3?

I have quite many ConsoleWrites in the script, so I know approx where this happens: it is around the call to a DLL (written in C). As I didn't write the DLL, I cannot say anything about its inner workings. For quite a while, while developing my script, all went very well. I have no idea where to look for the problem: are my data files too long, too many? could it be an error in the script which the syntax check doesn't catch?

environment: script runs under NT4, the files sit on a machine with XPH (SP2), connected through a local network

Thanks for any help!

BRX

Link to comment
Share on other sites

  • 3 weeks later...

Post your "problem reproducing" script.

I also saw exitcodes table somewhere in older AutoIt DOC sources - look at Download/Archive section.

Thanks for your interest in my problem. By now, I believe strongly that the strange message is caused by the dll (which uses quite a large software package by itself (which makes it practically impossible to run my script in an other environment)).

Remains the question of the exit code: I still could not find them. Can you give me a cue?

Link to comment
Share on other sites

Exit Code 3 means whatever the author meant it to mean. If the error is coming from the dll then you would have to ask the author of the dll.

If on the otherhand it's coming from AutoIts DllCall() function then

Error code 3 means "function" not found in the DLL file."

or from DllStructCreate

Error Code 3 means "Failed to allocate the memory needed for the struct, or Pointer = 0."

For StructGetData or StructSetData it's

"index would be outside of the struct."

This is the reason for requesting code to reproduce the error. BTW: all of the error code return values I listed are in the help file.

George

Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.

Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.***

The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number.

Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else.

"Old age and treachery will always overcome youth and skill!"

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...