summaryrefslogtreecommitdiffstats
path: root/src/H5A.c
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1998-08-06 21:32:33 (GMT)
committerRobb Matzke <matzke@llnl.gov>1998-08-06 21:32:33 (GMT)
commitacd04a1aa67b182623f26979515ab8dd5b978f11 (patch)
tree7a65e24c03e9e2d7db021e6f89603f5bab458a78 /src/H5A.c
parentde875442351b3ddd204b65d371536e63de6be8ff (diff)
downloadhdf5-acd04a1aa67b182623f26979515ab8dd5b978f11.zip
hdf5-acd04a1aa67b182623f26979515ab8dd5b978f11.tar.gz
hdf5-acd04a1aa67b182623f26979515ab8dd5b978f11.tar.bz2
[svn-r579] Changes since 19980806
---------------------- ./config/solaris2.5 Hopefully set up now so it honors the CC and CFLAGS variables and understands solaris cc flags. ./test/big.c Checks to see if creating lots of large sparse files exceeds the user disk quota and skips the test. It also checks that we can actually open ~64 files at once. ./doc/html/Files.html ./src/H5A.c ./src/H5Aprivate.h ./src/H5F.c ./src/H5Fpublic.h Added the H5Fflush() function which takes any object as an argument as long as the object is in some way associated with a file. This required an H5A_entof() ./src/H5.c ./src/H5Flow.c The `%a' format of HDfprintf() now allows a field width and justification flag etc, like the other formats. The old H5F_addr_print() was recoded to call HDfprintf() instead of vice versa.
Diffstat (limited to 'src/H5A.c')
-rw-r--r--src/H5A.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/H5A.c b/src/H5A.c
index befe020..960f988 100644
--- a/src/H5A.c
+++ b/src/H5A.c
@@ -1494,3 +1494,29 @@ H5A_close(H5A_t *attr)
FUNC_LEAVE(SUCCEED);
}
+
+/*-------------------------------------------------------------------------
+ * Function: H5A_entof
+ *
+ * Purpose: Return the symbol table entry for an attribute. It's the
+ * symbol table entry for the object to which the attribute
+ * belongs, not the attribute itself.
+ *
+ * Return: Success: Ptr to entry
+ *
+ * Failure: NULL
+ *
+ * Programmer: Robb Matzke
+ * Thursday, August 6, 1998
+ *
+ * Modifications:
+ *
+ *-------------------------------------------------------------------------
+ */
+H5G_entry_t *
+H5A_entof(H5A_t *attr)
+{
+ FUNC_ENTER(H5A_entof, NULL);
+ assert(attr);
+ FUNC_LEAVE(&(attr->ent));
+}