2012-02-05 11:35:58 -05:00
|
|
|
/****************************************************************
|
|
|
|
* *
|
2024-07-19 11:43:27 -04:00
|
|
|
* Copyright 2001, 2012 Fidelity Information Services, Inc *
|
2012-02-05 11:35:58 -05:00
|
|
|
* *
|
|
|
|
* This source code contains the intellectual property *
|
|
|
|
* of its copyright holder(s), and is made available *
|
|
|
|
* under a license. If you do not know the terms of *
|
|
|
|
* the license, please stop and do not read further. *
|
|
|
|
* *
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#include "mdef.h"
|
|
|
|
#include "gtm_string.h"
|
|
|
|
#include "gtm_time.h"
|
|
|
|
#include "gdsroot.h"
|
|
|
|
#include "gtm_facility.h"
|
|
|
|
#include "fileinfo.h"
|
|
|
|
#include "gdsbt.h"
|
|
|
|
#include "gdsblk.h"
|
|
|
|
#include "gdsfhead.h"
|
|
|
|
#include "filestruct.h"
|
|
|
|
#include "jnl.h"
|
|
|
|
#include "jnl_write.h"
|
|
|
|
#include "jnl_get_checksum.h"
|
|
|
|
|
|
|
|
GBLREF jnl_gbls_t jgbl;
|
|
|
|
|
|
|
|
void jnl_put_jrt_pfin(sgmnt_addrs *csa)
|
|
|
|
{
|
|
|
|
struct_jrec_pfin pfin_record;
|
|
|
|
jnl_private_control *jpc;
|
|
|
|
|
|
|
|
assert(csa->now_crit);
|
|
|
|
jpc = csa->jnl;
|
|
|
|
assert(0 != jpc->pini_addr);
|
|
|
|
pfin_record.prefix.jrec_type = JRT_PFIN;
|
|
|
|
pfin_record.prefix.forwptr = pfin_record.suffix.backptr = PFIN_RECLEN;
|
|
|
|
pfin_record.suffix.suffix_code = JNL_REC_SUFFIX_CODE;
|
|
|
|
pfin_record.prefix.pini_addr = (0 == jpc->pini_addr) ? JNL_HDR_LEN : jpc->pini_addr;
|
|
|
|
pfin_record.prefix.tn = csa->ti->curr_tn;
|
|
|
|
/* At this point jgbl.gbl_jrec_time should be set by the caller */
|
|
|
|
assert(jgbl.gbl_jrec_time);
|
|
|
|
pfin_record.prefix.time = jgbl.gbl_jrec_time;
|
|
|
|
pfin_record.prefix.checksum = INIT_CHECKSUM_SEED;
|
2024-07-19 11:43:27 -04:00
|
|
|
pfin_record.filler = 0;
|
|
|
|
pfin_record.prefix.checksum = compute_checksum(INIT_CHECKSUM_SEED, (uint4 *)&pfin_record, SIZEOF(struct_jrec_pfin));
|
2012-02-05 11:35:58 -05:00
|
|
|
jnl_write(jpc, JRT_PFIN, (jnl_record *)&pfin_record, NULL, NULL);
|
|
|
|
}
|