See ChangeLog entry 2003-05-09 17:20 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2003-05-09 21:20:58 +00:00
parent ad4e321168
commit 20c2b3e98a
2 changed files with 11 additions and 0 deletions

View File

@@ -8,6 +8,11 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2003-05-09 17:20 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* source/rtl/idle.c
+ Added a PRG-callable function wrapper for hb_releaseCPU() and
named it HB_RELEASECPU.
2003-05-09 14:40 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* source/rdd/dbcmd.c
! Fixed the FIELDPOS function to truncate long field names,

View File

@@ -292,3 +292,9 @@ HB_FUNC( HB_IDLEDEL )
if( !bFound )
hb_ret(); /* return NIL */
}
/* Release a CPU time slice */
HB_FUNC( HB_RELEASECPU )
{
hb_releaseCPU();
}