Displaying 4 results from an estimated 4 matches for "dofil".
Did you mean:
dofit
2008 Sep 11
2
/etc/rc5.d
I have a shell script, /usr/bin/joevpn, which does a quick VPN
connect. Basically (HOST and DOFIL are defined above and are correct.
I just did not list them here)
case "$1" in
start)
date > $DOFIL
while [ -f $DOFIL ]
do
echo y | /usr/local/bin/vpnclient connect $HOST
sleep 10
done
;;
# Reco...
2013 Sep 21
1
[LLVMdev] LLD input graph handling proposal
...().
Given that nextFile() is basically an iteration mechanism, perhaps we can make it conform to C++11 iterators. The one issue is the feedback of whether the file was used or not. A separate notifyFileAddedContent() method (instead of a parameter to nextFile()) could fix that. And if Resolver::doFile() called linkingContext.notifyFileAddedContent() for every file used (even object files), then the Resolver algorithm would look like:
for (File *file : linkingContext) {
if (file.kind() == object) {
// add
}
else if (file.kind() == archive) {
if (resol...
2013 Sep 21
0
[LLVMdev] LLD input graph handling proposal
Hi Nick,
Read this along with this example extract:
ld -flavor gnu main.o thread.o --start-group libc.a libpthread.a
--end-group function.o
main.o has atoms
------------------------
main (defined)
printf(undefined)
fn(undefined)
thread.o has atoms
-----------------------------
pthread_create (undefined)
libc.a(printf.o) has atoms
------------------------------------
printf(defined)
2013 Sep 21
2
[LLVMdev] LLD input graph handling proposal
Hi,
Attached is the pdf of the operation to make things easier to read.
Thanks
Shankar Easwaran
On 9/20/2013 7:04 PM, Shankar Easwaran wrote:
> My email client spoilt the whole email, will create a pdf and send it.
>
> On 9/20/2013 7:00 PM, Shankar Easwaran wrote:
>> Hi Nick,
>>
>> On 9/20/2013 5:59 PM, Nick Kledzik wrote:
>>> On Sep 20, 2013, at 3:42 PM,