[fpc-pascal] Use sleep in thread

Philippe Lévi Philippe at quarta.com.br
Wed Feb 25 17:26:09 CET 2015


synchronising tools do not do what you want?


________________________________
De: fpc-pascal-bounces at lists.freepascal.org <fpc-pascal-bounces at lists.freepascal.org> em nome de Xiangrong Fang <xrfang at gmail.com>
Enviado: quarta-feira, 25 de fevereiro de 2015 12:33
Para: FPC-Pascal users discussions
Assunto: Re: [fpc-pascal] Use sleep in thread

2015-02-25 23:16 GMT+08:00 <hinstance at yandex.ru<mailto:hinstance at yandex.ru>>:
not sure if this helps, but:
for example, if you want thread T to run using approx. 70% of max. available capacity, try this:

repeat
  T.Resume;
  Sleep(70);
  T.Resume;
  Sleep(30);
until ...

?This seems not what I want. I would like to schedule it from within the thread.  My demo program is here:

https://github.com/xrfang/fpcollection/blob/master/src/demos/asyncdo/demo.lpr

TAsyncDo is the class I wrote to have a procedure run in parallel.

I want to control priority of the thread from within the worker, not from the main thread. ?

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freepascal.org/pipermail/fpc-pascal/attachments/20150225/0393d3f5/attachment.html>


More information about the fpc-pascal mailing list