Re: [fpc-pascal] Is the GIT repository updated?

2013-11-25 Thread Graeme Geldenhuys
On 2013-11-22 00:50, silvioprog wrote:
 
 https://github.com/graemeg/freepascal/commits/master
 
 The last commit it:

My appologies... I've relocated the server that maintains that
repository, but have been overwhelmed with work, so haven't had a chance
to set it up in the new location. I'll try and get it sorted today, or
at the latest during this coming week.

Sorry for any inconvenience.


Regards,
  - Graeme -

-- 
fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal
http://fpgui.sourceforge.net/

Opensoft Ltd
Email: gra...@geldenhuys.co.uk
Mobile: 07526 112685
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] Is the GIT repository updated?

2013-11-25 Thread Graeme Geldenhuys
On 2013-11-22 00:50, silvioprog wrote:
 
 https://github.com/graemeg/freepascal/commits/master


OK, I've completed the server relocation. Everything should be up and
running as normal again. If you find it goes out of sync (hopefully not)
then just let me know.

I've also got the Lazarus git mirror back up an running too.

Regards,
  - Graeme -

-- 
fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal
http://fpgui.sourceforge.net/

Opensoft Ltd
Email: gra...@geldenhuys.co.uk
Mobile: 07526 112685
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


[fpc-pascal] FastMM for FPC?

2013-11-25 Thread Juha Manninen
Hello

We found an old link from 2005 about a FastMM port :

http://free-pascal-general.1045716.n5.nabble.com/First-Test-of-FastMM4-for-fpc-td2809801.html

Is it still alive? Is there a version that works with recent FPCs?
Support for Win32 would be enough obviously.
We are comparing different memory managers under heavy load at my work.

Regards,
Juha
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


[fpc-pascal] SOLVED : Re: GetAffinity\SetAffinity

2013-11-25 Thread Brian
Problem solved ... ironically the solution was from a Windows guy.

Faulty Code
 
  Core2Thread_ID := BeginThread(@Core2_Thread_Test);
  InitCriticalSection(CriticalSection_Core2);
   Set_Thread_CPU_Core(Core2Thread_ID,$01);
   writeln('Core2 ok');
   
  
   Core22Thread_ID := BeginThread(@Core22_Thread_Test);
   InitCriticalSection(CriticalSection_Core22);
Set_Thread_CPU_Core(Core22Thread_ID,$02);
   
=

Corrected Code : InitCriticalSection() BEFORE BeginThread()

 InitCriticalSection(CriticalSection_Core2);
  Core2Thread_ID := BeginThread(@Core2_Thread_Test);
   Set_Thread_CPU_Core(Core2Thread_ID,$01);
   writeln('Core2 ok');
   
   InitCriticalSection(CriticalSection_Core22);
   Core22Thread_ID := BeginThread(@Core22_Thread_Test);
Set_Thread_CPU_Core(Core22Thread_ID,$02);
   




--
View this message in context: 
http://free-pascal-general.1045716.n5.nabble.com/GetAffinity-SetAffinity-tp3351231p5717575.html
Sent from the Free Pascal - General mailing list archive at Nabble.com.
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


[fpc-pascal] CAB file format

2013-11-25 Thread Marcos Douglas
Hi,

FPC has a lib to create CAB file format?

--
Marcos Douglas
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] CAB file format

2013-11-25 Thread Craig Peterson
On 11/25/2013 9:17 AM, Marcos Douglas wrote:
 FPC has a lib to create CAB file format?

Abbrevia can create CAB archives (Windows only) and the official
releases support FreePascal.  http://tpabbrevia.sourceforge.net/

-- 
Craig Peterson
Scooter Software

___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] CAB file format

2013-11-25 Thread Marcos Douglas
On Mon, Nov 25, 2013 at 1:11 PM, Craig Peterson
cr...@scootersoftware.com wrote:
 On 11/25/2013 9:17 AM, Marcos Douglas wrote:
 FPC has a lib to create CAB file format?

 Abbrevia can create CAB archives (Windows only) and the official
 releases support FreePascal.  http://tpabbrevia.sourceforge.net/

Thanks, I will take a look.

--
Marcos Douglas
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal] SOLVED : Re: GetAffinity\SetAffinity

2013-11-25 Thread Sven Barth
Am 25.11.2013 15:31 schrieb Brian v...@golden.net:

 Problem solved ... ironically the solution was from a Windows guy.

 Faulty Code

...
 Corrected Code : InitCriticalSection() BEFORE BeginThread()


Ah yes. Always keep in mind that the thread could already be happily
running (or in extreme cases even finished) when BeginThread (or in
extension TThread.Create(False)) returns.

Regards,
Sven
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] CAB file format

2013-11-25 Thread Marcos Douglas
On Mon, Nov 25, 2013 at 2:03 PM, Marcos Douglas m...@delfire.net wrote:
 On Mon, Nov 25, 2013 at 1:11 PM, Craig Peterson
 cr...@scootersoftware.com wrote:
 On 11/25/2013 9:17 AM, Marcos Douglas wrote:
 FPC has a lib to create CAB file format?

 Abbrevia can create CAB archives (Windows only) and the official
 releases support FreePascal.  http://tpabbrevia.sourceforge.net/

 Thanks, I will take a look.

Worked perfectly, thank you.

--
Marcos Douglas
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


[fpc-pascal] Memory leak in PascalScript

2013-11-25 Thread silvioprog
Hello,

Can you help me to fix this issue?:

https://github.com/remobjects/pascalscript/issues/61

Thank you!

-- 
Silvio Clécio
My public projects - github.com/silvioprog
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal] Is the GIT repository updated?

2013-11-25 Thread silvioprog
2013/11/24 Graeme Geldenhuys gra...@geldenhuys.co.uk

 On 2013-11-22 00:50, silvioprog wrote:
 
  https://github.com/graemeg/freepascal/commits/master
 
  The last commit it:

 My appologies... I've relocated the server that maintains that
 repository, but have been overwhelmed with work, so haven't had a chance
 to set it up in the new location. I'll try and get it sorted today, or
 at the latest during this coming week.

 Sorry for any inconvenience.


 Regards,
   - Graeme -

 --
 fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal
 http://fpgui.sourceforge.net/

 Opensoft Ltd
 Email: gra...@geldenhuys.co.uk
 Mobile: 07526 112685
 ___
 fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
 http://lists.freepascal.org/mailman/listinfo/fpc-pascal


No problems. ;)

-- 
Silvio Clécio
My public projects - github.com/silvioprog
___
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal