This archive contains answers to questions sent to Unidata support through mid-2025. Note that the archive is no longer being updated. We provide the archive for reference; many of the answers presented here remain technically correct, even if somewhat outdated. For the most up-to-date information on the use of NSF Unidata software and data services, please consult the Software Documentation first.
Mirna, > To: address@hidden > From: "Mirna G Abyad" <address@hidden> > Subject: pq_insert > Organization: US DOC/NWS/NOAA/NEXRAD ROC The above message contained the following: > Hi, > > I am a developer with ROC. Hello ROC developer! I'm the LDM developer. > I am getting a status error of 14 from pq_insert. I am trying to > figure out the meaning of the error. Do you know where I may be able > to get more information? I use the source code -- in this case it's file "src/pq/pq.c". The error-code is the <errno.h> error-code. On my system: $ uname -srv SunOS 5.8 Generic_108528-21 an error-code of 14 means $ grep -w 14 /usr/include/sys/errno.h ... #define EFAULT 14 /* Bad address */ I see that the functions sigprocmask(), fcntl(), open(), write(), and read() can all return EFAULT. These functions are used by the pq module. Regards, Steve Emmerson