Displaying 4 results from an estimated 4 matches for "getdefaultgroupid".
2005 Apr 21
0
[LLVMdev] misc CVS patches
On Thu, 2005-04-21 at 17:56 +0200, Markus F.X.J. Oberhumer wrote:
> Reid Spencer wrote:
> > If a specific value for these is
> > needed on a given platform, then we need to implement something like
> > "getDefaultUserId" and "getDefaultGroupId" functions in lib/System and
> > use those in lib/Bytecode/Archive.
>
> That's probably the way to go.
Implemented as sys::Process::GetCurrentUserId() and
sys::Process::GetCurrentGroupId(). Both Unix and Win32 implementations
have been provided. Jeff, is there something mo...
2005 Apr 20
8
[LLVMdev] misc CVS patches
On Wed, Apr 20, 2005 at 12:12:54PM +0200, Markus F.X.J. Oberhumer wrote:
> Misha Brukman wrote:
> >On Tue, Apr 19, 2005 at 07:01:40AM +0200, Markus F.X.J. Oberhumer
> >wrote: Have you considered using bugpoint for your codegen debugging
> >needs? http://llvm.cs.uiuc.edu/docs/Bugpoint.html#codegendebug
>
> Well, the (critical) bug in question was
>
2005 Apr 21
0
[LLVMdev] misc CVS patches
...values to 1000 by default because in general the
uid/gid doesn't matter in an archive and the 1000 value gets you to a
safe (non-root, non-system) value. If a specific value for these is
needed on a given platform, then we need to implement something like
"getDefaultUserId" and "getDefaultGroupId" functions in lib/System and
use those in lib/Bytecode/Archive.
Is there a specific problem that is driving these changes?
Reid.
On Thu, 2005-04-21 at 17:17 +0200, Markus F.X.J. Oberhumer wrote:
> Jeff Cohen wrote:
> > Misha Brukman wrote:
> >
> >>> I didn'...
2005 Apr 21
0
[LLVMdev] misc CVS patches
...2005-04-21 at 17:56 +0200, Markus F.X.J. Oberhumer wrote:
> >
> >>Reid Spencer wrote:
> >>> If a specific value for these is
> >>> needed on a given platform, then we need to implement something like
> >>> "getDefaultUserId" and "getDefaultGroupId" functions in lib/System and
> >>> use those in lib/Bytecode/Archive.
> >>
> >>That's probably the way to go.
> >>
> >
> > Implemented as sys::Process::GetCurrentUserId() and
> > sys::Process::GetCurrentGroupId(). Both Unix and W...