search for: reid

Displaying 20 results from an estimated 4304 matches for "reid".

Did you mean: read
2000 Mar 13
2
Win2k Domain logons
...archives for the answer, but didn't find it. Can Win2k domain logon to a pre-3.0.0 samba server? Or di I need to get TNG running? I can get NT4.0 boxes to authenticate and login fine (Samba pre-3.0.0), but Win2k keeps complaining: "The following error occurred validating the name "Reid". The specified domain either does not exist ot could not be contacted." In the samba-log, I get: Mar 12 18:46:19 tenison nmbd[1819]: [2000/03/12 18:46:19, 1] nmbd/nmbd_processlogon.c:process_logon_packet(69) Mar 12 18:46:19 tenison nmbd[1819]: process_logon_packet: Logon from 172.16.6...
2011 Feb 11
3
[LLVMdev] Unit testing with random input using JIT
Hi Reid, If an argument is a pointer and the function changes the value it pointed to, do you know how to get that updated value after executing the wrapper function? Thanks. Vu On Tue, Jan 11, 2011 at 2:40 PM, Reid Kleckner <reid.kleckner at gmail.com>wrote: > On Tue, Jan 11, 2011 at 1:41 PM,...
2004 Nov 12
4
[LLVMdev] install-bytecode no longer works
...n supply a patch to take out the include, of course, but the problem then becomes that the tests will then fail on other Unix platforms. Some way is needed to make the tests platform-independent. As a workaround for now I guess I can add an empty alloca.h file. On Thu, 11 Nov 2004 09:43:12 -0800 Reid Spencer <reid at x10sys.com> wrote: > The default prefix is /usr/local but I would recommend that when you > configure LLVm you do so with: > > configure --prefix=/me/llvm/install/dir ... > > so that installation occurs in a place you have write access. If you > feel s...
2004 Nov 11
2
[LLVMdev] install-bytecode no longer works
Wow... it is nearly twice as fast. But it tried to install stuff in /usr/local (and as I wasn't root...) and it didn't do that before. As I don't care about profiling or tracing, I didn't bother to su and do it again. On Wed, 10 Nov 2004 23:45:35 -0800 Reid Spencer <reid at x10sys.com> wrote: > The entire makefile system was rewritten a couple of weeks ago. This is > a good thing, your compiles now go twice as fast. Resistance is futile, > just adapt :) > > The install target installed the bytecode libs into CFEINSTALL as before...
2004 Nov 12
0
[LLVMdev] install-bytecode no longer works
...s so that there is a correctness test suite whose goal is to always work on all platforms. To date the llvm/test/{Regression,Feature} provide that capability in a very minimal way. You're probably best to just define alloca as malloc in alloca.h and just hope it doesn't break semantics. Reid. On Thu, 2004-11-11 at 20:06, Jeff Cohen wrote: > No, I don't feel strongly about it... it's just annoying to have things > change on me that break habits :) > > On the other hand, I do feel strongly about the tests in llvm-test that > are now failing on me because they ex...
2011 Feb 11
0
[LLVMdev] Unit testing with random input using JIT
...ototype of f, you can just use getPointerToFunction and cast the result: // Let F be an llvm::Function* referring to 'f'. void (*f)(int*) = (void (*)(int*))JIT->getPointerToFunction(F); int a; f(&a); // read a I haven't compiled this, it's a guess at the usage from memory. Reid On Fri, Feb 11, 2011 at 12:55 PM, Vu Le <vmle at ucdavis.edu> wrote: > Suppose I want to test the function f with zero. > f(int *t){ >   *t = 2 > } > What I did was that I create a wrapper > void Wrapper(){ >   int a = 1; >   int *b = &a; >   f(b); >   // no...
2007 Aug 05
1
[LLVMdev] REMINDER: Scheduled Maitenance - web server and subversion
Just a reminder that the scheduled shutdown will begin in less than 12 hours. Reid. On Fri, 2007-08-03 at 15:57 -0700, Reid Spencer wrote: > All, > > The web server and subversion will experience a restart and possibly > several service interruptions this Sunday morning. Services will be > available during this time but may be interrupted on occasion during >...
2004 Sep 24
4
[LLVMdev] Little win32/Signals.cpp patch
I'll wait for the research. We should try, as much as possible, to make it work with just what the compiler provides and without third party packages. Thanks, reid. On Fri, 2004-09-24 at 07:46, Jeff Cohen wrote: > I added the include of cstudio and it fails with plain VC7.1; the file > does not exist. > > Add it for now. If it is impossible to build with VC7.1 and without > STLPort, then there really isn't a choice. I have to research t...
2004 Nov 11
0
[LLVMdev] install-bytecode no longer works
The default prefix is /usr/local but I would recommend that when you configure LLVm you do so with: configure --prefix=/me/llvm/install/dir ... so that installation occurs in a place you have write access. If you feel strongly about restoring the install-bytecode target, feel free to file a bug. Reid. On Thu, 2004-11-11 at 09:12, Jeff Cohen wrote: > Wow... it is nearly twice as fast. But it tried to install stuff in > /usr/local (and as I wasn't root...) and it didn't do that before. As I > don't care about profiling or tracing, I didn't bother to su and do it >...
2009 Oct 27
1
/etc/rc.local and /etc/fstab
...V style init stuff. touch /var/lock/subsys/local modprobe hangcheck-timer hangcheck_tick=1 hangcheck_margin=10 hangcheck_reboot=1 mount -t ocfs2 -o datavolume,nointr,_netdev,noatime /dev/mapper/mpath0 /u02 mount -t ocfs2 -o datavolume,nointr,_netdev /dev/mapper/mpath1 /u03 Thanks! -Reid Reid McKinley ******************************************************************************************** This message, including any attachments, contains confidential information intended for a specific individual and purpose, and is protected by law. If you are not the intended recip...
2007 Aug 05
0
[LLVMdev] REMINDER: Scheduled Maitenance - web server and subversion
Just a reminder that the scheduled service interruptions will begin in approximately one hour. Reid. On Sat, 2007-08-04 at 22:27 -0700, Reid Spencer wrote: > Just a reminder that the scheduled shutdown will begin in less than 12 > hours. > > Reid. > > On Fri, 2007-08-03 at 15:57 -0700, Reid Spencer wrote: > > All, > > > > The web server and subversion will...
2004 Nov 11
2
[LLVMdev] install-bytecode no longer works
But there already was an "install", and it did far more than install the bytecode files. That changed too? On Wed, 10 Nov 2004 23:28:27 -0800 Reid Spencer <reid at x10sys.com> wrote: > Yeah, its just "install" now. > > I'll fix the documentation. > > Reid. > > On Wed, 2004-11-10 at 23:19, Jeff Cohen wrote: > > My rebuild from scratch has hit this snag. The instructions still call > > f...
2007 Apr 12
1
[LLVMdev] T-Shirts
All, Just to be really clear. The web-site already says this, but .. Despite this message: On Wed, 2007-04-11 at 19:17 -0700, Reid Spencer wrote: > Hi Scott, > > Only attendees can get the T-Shirt as there isn't funds to > ship them all over the place. > > Reid. If you can't attend the meeting you can still get a T-Shirt but you'll have to pay the shipping costs. Just send me a note for now wi...
2007 Apr 12
3
[LLVMdev] Update: May 25th Developers' Meeting (T-Shirts!)
Hi Scott, On Wed, 2007-04-11 at 18:31 -0700, Scott Michel wrote: > +2 Large T-shirts (me and Mark Thomas, also from Aerospace). Are you confirming Mark Thomas as attending then? Only attendees can get the T-Shirt as there isn't funds to ship them all over the place. Reid. > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
2004 May 11
0
[LLVMdev] ExecutionEngine/Interpreter/ExternalFunctions.cpp
I mis-stated what I think should be deleted. The block of code from "GlobalVariable *IOB = 0;" to the end of the loop should be delted because the only effect the loop has is on the IOB variable and that variable is never used after the loop. Reid. On Tue, 2004-05-11 at 18:14, Reid Spencer wrote: > Hi, > > I'm working on bug 122, consolidating the interface to the SymbolTable > class. In doing so, I found the function below which traverses the > symbol table but apparently unnecessarily. Before I remove the > traversa...
2014 Apr 07
9
[LLVMdev] 3.4.1 Release Plans
...> LLVM: > 1. r205067 - Akira Hatanaka <ahatanaka at apple.com> - [x86] Fix printing of > register operands with q modifier > 2. r203581 - Hans Wennborg <hans at hanshq.net> - X86: Don't generate 64-bit > movd after cmpneqsd in 32-bit mode (PR19059) > 3. r203146 - Reid Kleckner <reid at kleckner.net> - MS asm: The initial dot in > struct access is optional > 4. r202774 - Reid Kleckner <reid at kleckner.net> - MC: Fix Intel assembly > parser for [global + offset] > 5. r201507 - Craig Topper <craig.topper at gmail.com> - Fix diassemble...
2004 Aug 29
5
[LLVMdev] Optimization opportunity
...at all. I don't seem to have it or any way of building it. There's no rush to commit this. If you don't feel comfortable doing so, it can wait until Chris gets back. And as it's my first submission, you shouldn't feel comfortable :) Jeff On Sat, 28 Aug 2004 22:20:57 -0700 Reid Spencer <reid at x10sys.com> wrote: > Jeff, > > Chris isn't likely to respond to this for a while as he's on vacation. > I'll take a look at it and will commit it if it looks good. Since code > gen isn't my specialty, could you increase my comfort level a lit...
2006 Dec 31
3
[LLVMdev] nightly tester grawp
On Sun, 2006-12-31 at 13:37 -0800, Chris Lattner wrote: > On Sat, 30 Dec 2006, Reid Spencer wrote: > >>> You all just need remove "stacker_rt.ll". the stacker_rt.ll is a > >> rebuilt so they output proper .ll files. Reid, can you change the > >> makefile rule to use "llvm-gcc -S -emit-llvm -o - | llvm-upgrade > $@" or > >...
2009 Jun 03
3
ocfs2console is slow
...had extremely slow performance in the ocfs2console. It can take us over 30 minutes to do the simplest tasks. We do not have this type of performance with other xwindows applications on our server. Does anyone have any performance improvement suggestions for the ocfs2console? Thanks, Reid ******************************************************************************************** This message, including any attachments, contains confidential information intended for a specific individual and purpose, and is protected by law. If you are not the intended recipient, please conta...
2004 Aug 10
0
[LLVMdev] API on JIT, code snippets
Reid Spencer, thank you for your quick responce, finally i got to my PC at home. You wrote: > Attached are three files: "valery.cpp" which contains your original, > "reid.cpp" which contains corrections to most of the FIXME items and > "diffs" which shows the...