Displaying 3 results from an estimated 3 matches for "threadlet".
Did you mean:
threaded
2005 May 16
0
Asterisk - fax - spandsp <--older threadlet from Jean-Yves about fax corruption, *not* timing
> Actually.. I seem to have jumped to improper conclusion..
One thing you will find abour spandsp is that some fax machines will just
plain have a problem sending to spandsp, period. Mr. Underwood has localized
it to cetain HP fax machines and I can confirm that HP all-in-one SOHO
machines exhibit this problem, but I have also noted it with Canons and
Panasonics. In my context, I have several
2014 Jan 23
2
[LLVMdev] Position-independent stacks
...of having LLVM generate code that has
position-independent stacks. This would be a very useful property for
implementing all sorts of micro-thread libraries (I am thinking something
similar to Python greenlets <http://stackoverflow.com/a/17447308>), because
you'd be able to easily save threadlet state from one OS thread and later
restore it into another.
On the surface, it seems entirely do-able - basically, one needs to get rid
of all the things that point into the stack. It should be sufficient to:
1. write a function pass that finds all local variables, whose address is
ever taken, an...
2014 Jan 23
2
[LLVMdev] Position-independent stacks
...as
>> position-independent stacks. This would be a very useful property for
>> implementing all sorts of micro-thread libraries (I am thinking something
>> similar to Python greenlets <http://stackoverflow.com/a/17447308>),
>> because you'd be able to easily save threadlet state from one OS thread and
>> later restore it into another.
>>
>> On the surface, it seems entirely do-able - basically, one needs to get
>> rid of all the things that point into the stack. It should be sufficient
>> to:
>> 1. write a function pass that finds...