1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF5. The full HDF5 copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the files COPYING and Copyright.html. COPYING can be found at the root *
* of the source code distribution tree; Copyright.html can be found at the *
* root level of an installed copy of the electronic HDF5 document set and *
* is linked from the top-level documents page. It can also be found at *
* http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have *
* access to either file, you may request a copy from help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "H5VLiod_server.h"
#include "H5RCpublic.h"
#include "H5TRpublic.h"
#ifdef H5_HAVE_EFF
/*
* Programmer: Mohamad Chaarawi <chaarawi@hdfgroup.gov>
* July, 2013
*
* Purpose: The IOD plugin server side transaction and read context routines.
*/
/*-------------------------------------------------------------------------
* Function: H5VL_iod_server_rcxt_acquire_cb
*
* Purpose: Acquire a read context of a container using a version number.
*
* Return: Success: SUCCEED
* Failure: Negative
*
* Programmer: Mohamad Chaarawi
* September, 2013
*
*-------------------------------------------------------------------------
*/
void
H5VL_iod_server_rcxt_acquire_cb(AXE_engine_t UNUSED axe_engine,
size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[],
size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[],
void *_op_data)
{
op_data_t *op_data = (op_data_t *)_op_data;
rc_acquire_in_t *input = (rc_acquire_in_t *)op_data->input;
rc_acquire_out_t output;
iod_handle_t coh = input->coh; /* the container handle */
iod_trans_id_t c_version = input->c_version;
iod_trans_id_t acquired_version;
hid_t rcapl_id;
H5RC_request_t acquire_req;
herr_t ret_value = SUCCEED;
FUNC_ENTER_NOAPI_NOINIT
if(H5P_DEFAULT == input->rcapl_id)
input->rcapl_id = H5Pcopy(H5P_RC_ACQUIRE_DEFAULT);
rcapl_id = input->rcapl_id;
if(H5Pget_rcapl_version_request(rcapl_id, &acquire_req) < 0) {
HGOTO_ERROR(H5E_PLIST, H5E_CANTSET,FAIL, "can't get acquire request property");
}
switch(acquire_req) {
case H5RC_EXACT:
#if H5VL_IOD_DEBUG
fprintf(stderr, "Exact Acquire Read Context %"PRIu64"\n", input->c_version);
#endif
if(iod_trans_start(coh, &c_version, NULL, 0, IOD_TRANS_R, NULL) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "can't acquire read context");
acquired_version = c_version;
break;
case H5RC_LAST:
#if H5VL_IOD_DEBUG
fprintf(stderr, "Acquire LAST Read Context\n");
#endif
c_version = IOD_TID_UNKNOWN;
if(iod_trans_start(coh, &c_version, NULL, 0, IOD_TRANS_R, NULL) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "can't acquire read context");
acquired_version = c_version;
break;
case H5RC_NEXT:
{
iod_cont_trans_stat_t *tids;
uint64_t u;
#if H5VL_IOD_DEBUG
fprintf(stderr, "Next Acquire Read Context %"PRIu64"\n", input->c_version);
#endif
if(iod_query_cont_trans_stat(coh, &tids, NULL) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "can't get container tids status");
acquired_version = IOD_TID_UNKNOWN;
for(u=c_version; u<tids->latest_rdable ; u++) {
if(iod_trans_start(coh, &u, NULL, 0, IOD_TRANS_R, NULL) < 0)
continue;
acquired_version = u;
break;
}
if(IOD_TID_UNKNOWN == acquired_version) {
HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL,
"can't get a read version after %"PRIu64"\n", c_version);
}
if(iod_free_cont_trans_stat(coh, tids) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "can't free container transaction status object");
break;
}
case H5RC_PREV:
{
iod_cont_trans_stat_t *tids;
uint64_t u;
#if H5VL_IOD_DEBUG
fprintf(stderr, "Next Acquire Read Context %"PRIu64"\n", input->c_version);
#endif
if(iod_query_cont_trans_stat(coh, &tids, NULL) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "can't get container tids status");
if(c_version >= tids->latest_rdable) {
acquired_version = tids->latest_rdable;
if(iod_trans_start(coh, &acquired_version, NULL, 0, IOD_TRANS_R, NULL) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL, "can't acquire read context");
break;
}
acquired_version = IOD_TID_UNKNOWN;
u=c_version;
for(u=c_version; u>0; u--) {
if(iod_trans_start(coh, &u, NULL, 0, IOD_TRANS_R, NULL) < 0)
continue;
acquired_version = u;
break;
}
if(IOD_TID_UNKNOWN == acquired_version) {
HGOTO_ERROR(H5E_SYM, H5E_CANTGET, FAIL,
"can't get a read version before %"PRIu64"\n", c_version);
}
if(iod_free_cont_trans_stat(coh, tids) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "can't free container transaction status object");
break;
}
default:
HGOTO_ERROR(H5E_PLIST, H5E_CANTSET, FAIL, "invalid acquire request");
}
output.c_version = acquired_version;
output.ret = ret_value;
#if H5VL_IOD_DEBUG
fprintf(stderr, "Done with Acquire Read Context. Acquired %"PRIu64"\n", output.c_version);
#endif
HG_Handler_start_output(op_data->hg_handle, &output);
done:
/* return an UNDEFINED oh to the client if the operation failed */
if(ret_value < 0) {
fprintf(stderr, "Failed to Acquire Read context\n");
output.ret = FAIL;
HG_Handler_start_output(op_data->hg_handle, &output);
}
input = (rc_acquire_in_t *)H5MM_xfree(input);
op_data = (op_data_t *)H5MM_xfree(op_data);
FUNC_LEAVE_NOAPI_VOID
} /* end H5VL_iod_server_rcxt_acquire_cb() */
/*-------------------------------------------------------------------------
* Function: H5VL_iod_server_rcxt_release_cb
*
* Purpose: Release a read context of a container using a version number.
*
* Return: Success: SUCCEED
* Failure: Negative
*
* Programmer: Mohamad Chaarawi
* September, 2013
*
*-------------------------------------------------------------------------
*/
void
H5VL_iod_server_rcxt_release_cb(AXE_engine_t UNUSED axe_engine,
size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[],
size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[],
void *_op_data)
{
op_data_t *op_data = (op_data_t *)_op_data;
rc_release_in_t *input = (rc_release_in_t *)op_data->input;
iod_handle_t coh = input->coh; /* the container handle */
herr_t ret_value = SUCCEED;
FUNC_ENTER_NOAPI_NOINIT
#if H5VL_IOD_DEBUG
fprintf(stderr, "Release Read Context %"PRIu64"\n", input->c_version);
#endif
if(iod_trans_finish(coh, input->c_version, NULL, 0, NULL) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTSET, FAIL, "can't release Read Context %"PRIu64"", input->c_version);
done:
if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value))
fprintf(stderr, "Failed to Release Read context\n");
input = (rc_release_in_t *)H5MM_xfree(input);
op_data = (op_data_t *)H5MM_xfree(op_data);
FUNC_LEAVE_NOAPI_VOID
} /* end H5VL_iod_server_rcxt_release_cb() */
/*-------------------------------------------------------------------------
* Function: H5VL_iod_server_rcxt_persist_cb
*
* Purpose: Persist a read context of a container using a version number.
*
* Return: Success: SUCCEED
* Failure: Negative
*
* Programmer: Mohamad Chaarawi
* September, 2013
*
*-------------------------------------------------------------------------
*/
void
H5VL_iod_server_rcxt_persist_cb(AXE_engine_t UNUSED axe_engine,
size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[],
size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[],
void *_op_data)
{
op_data_t *op_data = (op_data_t *)_op_data;
rc_persist_in_t *input = (rc_persist_in_t *)op_data->input;
iod_handle_t coh = input->coh; /* the container handle */
herr_t ret_value = SUCCEED;
FUNC_ENTER_NOAPI_NOINIT
#if H5VL_IOD_DEBUG
fprintf(stderr, "Persist Read Context %"PRIu64"\n", input->c_version);
#endif
if(iod_trans_persist(coh, input->c_version, NULL, NULL) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTSET, FAIL, "can't persist Read Context %"PRIu64"", input->c_version);
done:
if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value))
fprintf(stderr, "Failed to Persist Read context\n");
input = (rc_persist_in_t *)H5MM_xfree(input);
op_data = (op_data_t *)H5MM_xfree(op_data);
FUNC_LEAVE_NOAPI_VOID
} /* end H5VL_iod_server_rcxt_persist_cb() */
/*-------------------------------------------------------------------------
* Function: H5VL_iod_server_rcxt_snapshot_cb
*
* Purpose: Snapshot a read context of a container using a version number.
*
* Return: Success: SUCCEED
* Failure: Negative
*
* Programmer: Mohamad Chaarawi
* September, 2013
*
*-------------------------------------------------------------------------
*/
void
H5VL_iod_server_rcxt_snapshot_cb(AXE_engine_t UNUSED axe_engine,
size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[],
size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[],
void *_op_data)
{
op_data_t *op_data = (op_data_t *)_op_data;
rc_snapshot_in_t *input = (rc_snapshot_in_t *)op_data->input;
iod_handle_t coh = input->coh; /* the container handle */
iod_trans_id_t tid = input->c_version;
herr_t ret_value = SUCCEED;
FUNC_ENTER_NOAPI_NOINIT
#if H5VL_IOD_DEBUG
fprintf(stderr, "Snapshot %s with Read Context %"PRIu64"\n", input->snapshot_name, input->c_version);
#endif
/* MSC - can only snapshot latest version */
if(iod_container_snapshot(coh, tid, input->snapshot_name, NULL, NULL) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTSET, FAIL, "can't snapshot Read Context %"PRIu64"", input->c_version);
done:
if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value))
fprintf(stderr, "Failed to Snapshot Read context\n");
input = (rc_snapshot_in_t *)H5MM_xfree(input);
op_data = (op_data_t *)H5MM_xfree(op_data);
FUNC_LEAVE_NOAPI_VOID
} /* end H5VL_iod_server_rcxt_snapshot_cb() */
/*-------------------------------------------------------------------------
* Function: H5VL_iod_server_trans_start_cb
*
* Purpose: Start a transaction on a container.
*
* Return: Success: SUCCEED
* Failure: Negative
*
* Programmer: Mohamad Chaarawi
* September, 2013
*
*-------------------------------------------------------------------------
*/
void
H5VL_iod_server_trans_start_cb(AXE_engine_t UNUSED axe_engine,
size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[],
size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[],
void *_op_data)
{
op_data_t *op_data = (op_data_t *)_op_data;
tr_start_in_t *input = (tr_start_in_t *)op_data->input;
iod_handle_t coh = input->coh; /* the container handle */
hid_t trspl_id;
iod_trans_id_t trans_num = input->trans_num;
unsigned num_peers; /* the number of peers starting this transaction */
herr_t ret_value = SUCCEED;
FUNC_ENTER_NOAPI_NOINIT
#if H5VL_IOD_DEBUG
fprintf(stderr, "Transaction Start %"PRIu64"\n", input->trans_num);
#endif
if(H5P_DEFAULT == input->trspl_id)
input->trspl_id = H5Pcopy(H5P_TR_START_DEFAULT);
trspl_id = input->trspl_id;
if(H5Pget_trspl_num_peers(trspl_id, &num_peers) < 0)
HGOTO_ERROR(H5E_PLIST, H5E_CANTGET, FAIL, "can't get acquire request property");
if(iod_trans_start(coh, &trans_num, NULL, num_peers, IOD_TRANS_W, NULL) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTSET, FAIL, "can't start transaction");
#if H5VL_IOD_DEBUG
fprintf(stderr, "Done with Transaction Start\n");
#endif
done:
if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value))
fprintf(stderr, "Failed to Start Transaction\n");
input = (tr_start_in_t *)H5MM_xfree(input);
op_data = (op_data_t *)H5MM_xfree(op_data);
FUNC_LEAVE_NOAPI_VOID
} /* end H5VL_iod_server_trans_start_cb() */
/*-------------------------------------------------------------------------
* Function: H5VL_iod_server_trans_finish_cb
*
* Purpose: Finish a transaction on a container.
*
* Return: Success: SUCCEED
* Failure: Negative
*
* Programmer: Mohamad Chaarawi
* September, 2013
*
*-------------------------------------------------------------------------
*/
void
H5VL_iod_server_trans_finish_cb(AXE_engine_t UNUSED axe_engine,
size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[],
size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[],
void *_op_data)
{
op_data_t *op_data = (op_data_t *)_op_data;
tr_finish_in_t *input = (tr_finish_in_t *)op_data->input;
iod_handle_t coh = input->coh; /* the container handle */
hid_t trfpl_id;
iod_trans_id_t trans_num = input->trans_num;
hbool_t acquire = input->acquire;
herr_t ret_value = SUCCEED;
FUNC_ENTER_NOAPI_NOINIT
#if H5VL_IOD_DEBUG
fprintf(stderr, "Transaction Finish %"PRIu64"\n", input->trans_num);
#endif
/* Finish the transaction */
if(iod_trans_finish(coh, trans_num, NULL, 0, NULL) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTSET, FAIL, "can't finish transaction");
/* if the flag is true, acquire a read context on the finished transaction */
if(TRUE == acquire) {
#if H5VL_IOD_DEBUG
fprintf(stderr, "Transaction Acquire after Finish %"PRIu64"\n", trans_num);
#endif
if(iod_trans_start(coh, &trans_num, NULL, 0, IOD_TRANS_R, NULL) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "can't acquire read context");
}
#if H5VL_IOD_DEBUG
fprintf(stderr, "Done with Transaction Finish\n");
#endif
done:
if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value))
fprintf(stderr, "Failed to Finish Transaction\n");
input = (tr_finish_in_t *)H5MM_xfree(input);
op_data = (op_data_t *)H5MM_xfree(op_data);
FUNC_LEAVE_NOAPI_VOID
} /* end H5VL_iod_server_trans_finish_cb() */
/*-------------------------------------------------------------------------
* Function: H5VL_iod_server_trans_set_dependency_cb
*
* Purpose: Set Dependency between 2 transactions on a container.
*
* Return: Success: SUCCEED
* Failure: Negative
*
* Programmer: Mohamad Chaarawi
* September, 2013
*
*-------------------------------------------------------------------------
*/
void
H5VL_iod_server_trans_set_dependency_cb(AXE_engine_t UNUSED axe_engine,
size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[],
size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[],
void *_op_data)
{
op_data_t *op_data = (op_data_t *)_op_data;
tr_set_depend_in_t *input = (tr_set_depend_in_t *)op_data->input;
iod_handle_t coh = input->coh; /* the container handle */
iod_trans_depend_desc_t depends;
herr_t ret_value = SUCCEED;
FUNC_ENTER_NOAPI_NOINIT
#if H5VL_IOD_DEBUG
fprintf(stderr, "Transaction Set_Dependency %"PRIu64" on %"PRIu64"\n",
input->child_trans_num, input->parent_trans_num);
#endif
/* MSC - set depends */
//if(iod_trans_depend(coh, depends, NULL) < 0)
//HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "can't set dependency between transactions");
#if H5VL_IOD_DEBUG
fprintf(stderr, "Done with Transaction Set_Dependency\n");
#endif
done:
if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value))
fprintf(stderr, "Failed to Set_Dependency between Transactions\n");
input = (tr_set_depend_in_t *)H5MM_xfree(input);
op_data = (op_data_t *)H5MM_xfree(op_data);
FUNC_LEAVE_NOAPI_VOID
} /* end H5VL_iod_server_trans_set_dependency_cb() */
/*-------------------------------------------------------------------------
* Function: H5VL_iod_server_trans_skip_cb
*
* Purpose: Skip a number of transactions on a container.
*
* Return: Success: SUCCEED
* Failure: Negative
*
* Programmer: Mohamad Chaarawi
* September, 2013
*
*-------------------------------------------------------------------------
*/
void
H5VL_iod_server_trans_skip_cb(AXE_engine_t UNUSED axe_engine,
size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[],
size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[],
void *_op_data)
{
op_data_t *op_data = (op_data_t *)_op_data;
tr_skip_in_t *input = (tr_skip_in_t *)op_data->input;
iod_handle_t coh = input->coh; /* the container handle */
iod_trans_id_t start_trans_num = input->start_trans_num;
uint64_t count = input->count;
iod_trans_range_desc_t skip_ranges;
herr_t ret_value = SUCCEED;
FUNC_ENTER_NOAPI_NOINIT
#if H5VL_IOD_DEBUG
fprintf(stderr, "Transaction Skip %"PRIu64" starting at %"PRIu64"\n", count, start_trans_num);
#endif
/* MSC - set skip ranges */
skip_ranges.n_range = 1;
//if(iod_trans_skip(coh, skip_ranges, NULL) < 0)
//HGOTO_ERROR(H5E_SYM, H5E_CANTINIT, FAIL, "can't skip transactions");
#if H5VL_IOD_DEBUG
fprintf(stderr, "Done with Transaction Skip\n");
#endif
done:
if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value))
fprintf(stderr, "Failed to Skip Transaction\n");
input = (tr_skip_in_t *)H5MM_xfree(input);
op_data = (op_data_t *)H5MM_xfree(op_data);
FUNC_LEAVE_NOAPI_VOID
} /* end H5VL_iod_server_trans_skip_cb() */
/*-------------------------------------------------------------------------
* Function: H5VL_iod_server_trans_abort_cb
*
* Purpose: Abort a transaction on a container.
*
* Return: Success: SUCCEED
* Failure: Negative
*
* Programmer: Mohamad Chaarawi
* September, 2013
*
*-------------------------------------------------------------------------
*/
void
H5VL_iod_server_trans_abort_cb(AXE_engine_t UNUSED axe_engine,
size_t UNUSED num_n_parents, AXE_task_t UNUSED n_parents[],
size_t UNUSED num_s_parents, AXE_task_t UNUSED s_parents[],
void *_op_data)
{
op_data_t *op_data = (op_data_t *)_op_data;
tr_abort_in_t *input = (tr_abort_in_t *)op_data->input;
iod_handle_t coh = input->coh; /* the container handle */
iod_trans_id_t trans_num = input->trans_num;
herr_t ret_value = SUCCEED;
FUNC_ENTER_NOAPI_NOINIT
#if H5VL_IOD_DEBUG
fprintf(stderr, "Transaction Abort %"PRIu64"\n", input->trans_num);
#endif
if(iod_trans_finish(coh, trans_num, NULL, IOD_TRANS_ABORT_DEPENDENT, NULL) < 0)
HGOTO_ERROR(H5E_SYM, H5E_CANTSET, FAIL, "can't abort transaction");
#if H5VL_IOD_DEBUG
fprintf(stderr, "Done with Transaction Abort\n");
#endif
done:
if(HG_SUCCESS != HG_Handler_start_output(op_data->hg_handle, &ret_value))
fprintf(stderr, "Failed to Abort Transaction\n");
input = (tr_abort_in_t *)H5MM_xfree(input);
op_data = (op_data_t *)H5MM_xfree(op_data);
FUNC_LEAVE_NOAPI_VOID
} /* end H5VL_iod_server_trans_abort_cb() */
#endif /* H5_HAVE_EFF */
|