mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-12-03 02:32:04 +08:00
[svn-r5783] Purpose:
New code Description: Add a few new error messages. Platforms tested: FreeBSD 4.6 (sleipnir)
This commit is contained in:
parent
58b9c34fc5
commit
d482fed23b
@ -97,8 +97,9 @@ static const H5E_minor_mesg_t H5E_minor_mesg_g[] = {
|
||||
{H5E_OVERFLOW, "Address overflowed"},
|
||||
|
||||
/* Function entry/exit interface errors */
|
||||
{H5E_CANTINIT, "Unable to initialize"},
|
||||
{H5E_CANTINIT, "Unable to initialize object"},
|
||||
{H5E_ALREADYINIT, "Object already initialized"},
|
||||
{H5E_CANTRELEASE, "Unable to release object"},
|
||||
|
||||
/* Object atom related errors */
|
||||
{H5E_BADATOM, "Unable to find atom information (already closed?)"},
|
||||
@ -137,6 +138,7 @@ static const H5E_minor_mesg_t H5E_minor_mesg_g[] = {
|
||||
|
||||
/* Datatype conversion errors */
|
||||
{H5E_CANTCONVERT, "Can't convert datatypes"},
|
||||
{H5E_BADSIZE, "Bad size for object"},
|
||||
|
||||
/* Dataspace errors */
|
||||
{H5E_CANTCLIP, "Can't clip hyperslab region"},
|
||||
|
@ -137,8 +137,9 @@ typedef enum H5E_minor_t {
|
||||
H5E_OVERFLOW, /*address overflowed */
|
||||
|
||||
/* Function entry/exit interface errors */
|
||||
H5E_CANTINIT, /*Can't initialize */
|
||||
H5E_CANTINIT, /*Can't initialize object */
|
||||
H5E_ALREADYINIT, /*object already initialized */
|
||||
H5E_CANTRELEASE, /*Can't release object */
|
||||
|
||||
/* Object atom related errors */
|
||||
H5E_BADATOM, /*Can't find atom information */
|
||||
@ -177,6 +178,7 @@ typedef enum H5E_minor_t {
|
||||
|
||||
/* Datatype conversion errors */
|
||||
H5E_CANTCONVERT, /*Can't convert datatypes */
|
||||
H5E_BADSIZE, /*Bad size for object */
|
||||
|
||||
/* Dataspace errors */
|
||||
H5E_CANTCLIP, /*Can't clip hyperslab region */
|
||||
|
Loading…
Reference in New Issue
Block a user