Displaying 4 results from an estimated 4 matches for "batko".
Did you mean:
batky
2017 Nov 20
4
Meaning of loads/stores marked both atomic and volatile
...nstruction, thus the former becomes 'atomic volatile'.
I'd appreciate links to any resources on the topic.
[1] https://llvm.org/docs/LangRef.html#volatile-memory-accesses
[2] https://llvm.org/docs/LangRef.html#store-instruction
[3] https://llvm.org/docs/LangRef.html#i-load
--
Paweł Batko
2017 Nov 20
2
Meaning of loads/stores marked both atomic and volatile
...s correct?
Example 2.
// shared variable
int i = 0;
void signalHandler(){
i = 1;
}
void main(){
while(i == 0){
printf("In the loop\n");
}
}
Here I also claim that the loop can be optimized into an infinite loop
if volatile is not used.
Is this correct?
--
Paweł Batko
2014 Feb 17
2
[LLVMdev] GC in multithreaded (but with no shared state) environment
Hi all,
I would like to implement GC for a language supporting multiple threads.
There will be no shared state between threads as communication will be
based on message passing. I do not care much about performance. The
priority for me is to get things working.
I have read LLVM guide on writing GC:
http://llvm.org/docs/GarbageCollection.html. Shadow stack approach looks
very promising. The
2005 Nov 01
1
popa3d migration problem
Hello,
I tried to migrate from popa3d to dovecot but I couldn't manage with
'pop3_reuse_xuidl = yes' option.
First of all it turned out that the feature is not supported in dovecot
for Fedora Core 4 (dovecot-0.99.14-4.fc4).
So I downloaded latest stable release of Dovecot but it didn't have this
option included too. Then I compiled the newest alpha version (dovecot
1.0.alpha4)