mktime/gmtime_r moved and highly simplified
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1973 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
e39eddf077
commit
b46074d348
@ -8,7 +8,7 @@
|
||||
<tr align="center" bgcolor="#e4e4e4">
|
||||
<td>
|
||||
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
|
||||
<p>Last Updated: June 26, 2009</p>
|
||||
<p>Last Updated: July 11, 2009</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -1477,6 +1477,11 @@ buildroot-0.1.7 2009-06-26 <spudmonkey@racsa.co.cr>
|
||||
<pre><ul>
|
||||
nuttx-0.4.10 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
* lib/: Added some basic regex-subset, pattern matching functions
|
||||
* lib/: Greatly simplified mktime() and gmtime_r(). The Gregorian and
|
||||
Julian time calculations were interesting, but not necessary in the
|
||||
typical embeddd system.
|
||||
|
||||
nuttx-0.4.10 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
||||
pascal-0.1.3 2009-xx-xx Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
|
@ -12,7 +12,7 @@
|
||||
<h1><big><font color="#3c34ec">
|
||||
<i>NuttX RTOS Porting Guide</i>
|
||||
</font></big></h1>
|
||||
<p>Last Updated: June 18, 2009</p>
|
||||
<p>Last Updated: July 11, 2009</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -2054,7 +2054,14 @@ extern void up_ledoff(int led);
|
||||
Used to initialize the internal time logic.
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_JULIAN_TIME</code>: Enables Julian time conversions
|
||||
<code>CONFIG_GREGORIAN_TIME</code>: Enables Gregorian time conversions.
|
||||
You would only need this if you are concerned about accurate time conversions in
|
||||
the recent past or in the distant future.
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_JULIAN_TIME</code>: Enables Julian time conversions.
|
||||
You would only need this if you are concerned about accurate time conversion in the distand past.
|
||||
You must also define <code>CONFIG_GREGORIAN_TIME</code> in order to use Julian time.
|
||||
</li>
|
||||
<li>
|
||||
<code>CONFIG_DEV_CONSOLE</code>: Set if architecture-specific logic
|
||||
|
Loading…
Reference in New Issue
Block a user