diff options
author | Hristian Kirtchev <kirtchev@adacore.com> | 2008-04-08 08:46:56 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2008-04-08 08:46:56 +0200 |
commit | 9392454c583167937227f1fc90892791e712d570 (patch) | |
tree | 09aa0051b4d030713c5c77681f328b3053ef767d /gcc/ada/g-timsta.ads | |
parent | 7f335c645dfac32c3697548434e25029b2e0b1ce (diff) | |
download | gcc-9392454c583167937227f1fc90892791e712d570.zip gcc-9392454c583167937227f1fc90892791e712d570.tar.gz gcc-9392454c583167937227f1fc90892791e712d570.tar.bz2 |
adaint.h, adaint.c (__gnat_current_time_string): New routine.
2008-04-08 Hristian Kirtchev <kirtchev@adacore.com>
* adaint.h, adaint.c (__gnat_current_time_string): New routine.
* g-timsta.adb, g-timsta.ads: New files.
From-SVN: r134017
Diffstat (limited to 'gcc/ada/g-timsta.ads')
-rw-r--r-- | gcc/ada/g-timsta.ads | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/gcc/ada/g-timsta.ads b/gcc/ada/g-timsta.ads new file mode 100644 index 0000000..87a07f8 --- /dev/null +++ b/gcc/ada/g-timsta.ads @@ -0,0 +1,42 @@ +------------------------------------------------------------------------------ +-- -- +-- GNAT RUN-TIME COMPONENTS -- +-- -- +-- G N A T . T I M E _ S T A M P -- +-- -- +-- S p e c -- +-- -- +-- Copyright (C) 2008, Free Software Foundation, Inc. -- +-- -- +-- GNAT is free software; you can redistribute it and/or modify it under -- +-- terms of the GNU General Public License as published by the Free Soft- -- +-- ware Foundation; either version 2, or (at your option) any later ver- -- +-- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- +-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- +-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- +-- for more details. You should have received a copy of the GNU General -- +-- Public License distributed with GNAT; see file COPYING. If not, write -- +-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- +-- Boston, MA 02110-1301, USA. -- +-- -- +-- As a special exception, if other files instantiate generics from this -- +-- unit, or you link this unit with other files to produce an executable, -- +-- this unit does not by itself cause the resulting executable to be -- +-- covered by the GNU General Public License. This exception does not -- +-- however invalidate any other reasons why the executable file might be -- +-- covered by the GNU Public License. -- +-- -- +-- GNAT was originally developed by the GNAT team at New York University. -- +-- Extensive contributions were provided by Ada Core Technologies Inc. -- +-- -- +------------------------------------------------------------------------------ + +-- This package provides a lighweight mechanism for obtaining time stamps + +package GNAT.Time_Stamp is + + function Current_Time return String; + -- Return the current local time in the following ISO 8601 string format: + -- YYYY-MM-DD HH:MM:SS.SS + +end GNAT.Time_Stamp; |