2010-03-12 14:07 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbnf/fttext.c
    + Added FT_FWRITELN().
    * Converted FT_FWRITEL() to be a wrapper for FT_FWRITELN().

  * contrib/hbxpp/thfuncx.prg
    * Formatting.
This commit is contained in:
Viktor Szakats
2010-03-12 13:08:29 +00:00
parent 3cd5de7df6
commit 08886857bc
3 changed files with 17 additions and 5 deletions

View File

@@ -17,6 +17,14 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-03-12 14:07 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbnf/fttext.c
+ Added FT_FWRITELN().
* Converted FT_FWRITEL() to be a wrapper for FT_FWRITELN().
* contrib/hbxpp/thfuncx.prg
* Formatting.
2010-03-12 11:39 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
+ Readded -pipe option for gcc (except djgpp) and icc/linux family
@@ -48,7 +56,7 @@
! Disabled some code parts which didn't compile with
>= 1.0.0 OpenSSL versions. This is not the right fix,
but I just can't figure what went wrong (or what
has been changed) in OpenSSL which cases it. There
has been changed) in OpenSSL which causes it. There
is something wrong around 'X509_NAME' symbol.
* utils/hbmk2/hbmk2.prg
@@ -306,7 +314,7 @@
* config/win/mingw.mk
* config/wce/mingwarm.mk
% Added -pipe option to win/gcc compilers, this way it's faster
(but consume more memory) since it passes intermediate files
(but consumes more memory) since it passes intermediate files
- I could only spot the .s file - without writing them to disk.
Probably we should enable this on other platforms as well,
and if it works out well, also in hbmk2.

View File

@@ -1329,7 +1329,7 @@ HB_FUNC( FT_FAPPEND )
* $END$
*/
HB_FUNC( FT_FWRITEL )
HB_FUNC( FT_FWRITELN )
{
const char * theData = hb_parc( 1 );
int iDataLen = hb_parclen( 1 );
@@ -1400,6 +1400,10 @@ HB_FUNC( FT_FWRITEL )
hb_retl( err );
}
HB_FUNC( FT_FWRITEL )
{
HB_FUNC_EXEC( FT_FWRITELN );
}
/* $DOC$
* $FUNCNAME$

View File

@@ -68,7 +68,7 @@ FUNCTION ThreadWait( aThreads, nTimeOut )
LOCAL xResult, nPos, apThIDs, th
apThIDs := {}
FOR each th IN aThreads
FOR EACH th IN aThreads
IF ISOBJECT( th )
AAdd( apThIDs, th:threadSelf )
ELSE
@@ -89,7 +89,7 @@ FUNCTION ThreadWaitAll( aThreads, nTimeOut )
LOCAL apThIDs, th
apThIDs := {}
FOR each th IN aThreads
FOR EACH th IN aThreads
IF ISOBJECT( th )
AAdd( apThIDs, th:threadSelf )
ELSE