File: op_horolog.c

package info (click to toggle)
fis-gtm 6.2-000-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 30,784 kB
  • ctags: 42,554
  • sloc: ansic: 358,483; asm: 4,847; csh: 4,574; sh: 2,261; awk: 200; makefile: 86; sed: 13
file content (40 lines) | stat: -rw-r--r-- 1,169 bytes parent folder | download
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
/****************************************************************
 *								*
 *	Copyright 2001, 2012 Fidelity Information Services, Inc	*
 *								*
 *	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 <sys/time.h>
#include "gtm_time.h"
#include "stringpool.h"
#include "op.h"
#include "dollarh.h"

GBLREF spdesc	stringpool;

void op_horolog(mval *s)
{
	uint4		days;
	time_t		seconds;
	struct timeval	tv;

	assert (stringpool.free <= stringpool.top);
	assert (stringpool.free >= stringpool.base);
	ENSURE_STP_FREE_SPACE(MAXNUMLEN + 1);
	gettimeofday(&tv, NULL);
	seconds = tv.tv_sec;
	dollarh(seconds, &days, &seconds);
	s->str.addr = (char *) stringpool.free;
	stringpool.free  = i2asc(stringpool.free, days);
	*stringpool.free++ = ',';
	stringpool.free = i2asc(stringpool.free, (uint4)seconds);
	s->str.len = INTCAST((char *)stringpool.free - s->str.addr);
	s->mvtype = MV_STR;
	return;
}