Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync Java changes - particularly VL handling #3442

Merged
merged 1 commit into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
597 changes: 158 additions & 439 deletions java/src/jni/h5aImp.c

Large diffs are not rendered by default.

561 changes: 142 additions & 419 deletions java/src/jni/h5dImp.c

Large diffs are not rendered by default.

891 changes: 872 additions & 19 deletions java/src/jni/h5util.c

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions java/src/jni/h5util.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ extern int h5str_dump_simple_mem(JNIEnv *env, FILE *stream, hid_t attr, int b

extern htri_t H5Tdetect_variable_str(hid_t tid);

extern void translate_rbuf(JNIEnv *env, jobjectArray ret_buf, jlong mem_type_id, H5T_class_t type_class,
jsize count, void *raw_buf);
extern void translate_wbuf(JNIEnv *env, jobjectArray ret_buf, jlong mem_type_id, H5T_class_t type_class,
jsize count, void *raw_buf);

/*
* Symbols used to format the output of h5str_sprintf and
* to interpret the input to h5str_convert.
Expand Down
Loading