Displaying 20 results from an estimated 3000 matches similar to: "Problem in Win95/98 Find Computer"
2000 Jan 20
0
Windows 2000 RC2 problem in printing (Samba 2.0.6)
Dear sir:
There was one problem which bothered me for a long time.
I used the Red Hat 5.2 with kernel 2.0.36 (gcc 2.7.2.3) and samba-2.0.3,
samba-2.0.5a for a period of time. The Linux was treated as the Samba server.
All of the file/printer sharing from the Linux samba server to the MS-Windows
95/98/NT clients are OK. It only got problems in the Windows 2000 (since
Beta3, now RC2) as the
2000 Jan 27
0
win95 user level security printing
Hello All,
I have a SCO unix server running smbclient 2.0.3 and I have set it up so
that it has print queues and can print to win95 and win nt 4 machines
successfully.
The win95 machines I can print to with share level security and the win nt
machines i can print to using doman usernames and password without
anyproblems. However I am trying to print to a win95 machine with user
level security.
2000 Mar 06
1
logon script with Win95
I've been having some trouble loggin on to the home share on my Win95 boxes.
I've checked the archive, and I've seen this posted before, but no solution
posted. My smb.conf maps home directories correctly with NT logons, but not
with Win95 PCs. It maps the profiles directory instead of the home directory.
If someone could take a quick look at my smb.conf and let me know what I hosed
2014 Sep 25
2
[LLVMdev] MachineRegisterInfo use_iterator/reg_iterator?
Thanks Quentin. I'm trying to examine from the operands of the return
instruction, and then to get the last assignment of those. I thought
use_iterator/reg_iterator may suit better than just loop through the
machine basicblock in the reverse order.
Cheng-Chih
On Thu, Sep 25, 2014 at 1:51 PM, Quentin Colombet <qcolombet at apple.com>
wrote:
> Hi Cheng-Chih,
>
> On Sep 25,
2009 Aug 21
0
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
On Aug 21, 2009, at 3:04 AM, Marc Brünink wrote:
>> This isn't really possible. The issue is that MemDep doesn't just
>> "analyze your function". It is designed to be as lazy as possible,
>> which means that it only does analysis when a query is performed.
>> This
>> means that if you have MemDep->Pass1->Pass2 and Pass2 uses MemDep
2009 Aug 21
2
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
Chris Lattner schrieb:
> On Aug 21, 2009, at 3:04 AM, Marc Brünink wrote:
>>> This isn't really possible. The issue is that MemDep doesn't just
>>> "analyze your function". It is designed to be as lazy as possible,
>>> which means that it only does analysis when a query is performed. This
>>> means that if you have
2007 Dec 18
0
[LLVMdev] Another Pass Manager Assertion
On Dec 18, 2007, at 10:55 AM, John Criswell wrote:
> Dear All,
>
> The attached code (which is a contrived test case) hits the following
> assertion:
>
> test:
> /home/vadve/criswell/src/llvm22/include/llvm/PassAnalysisSupport.h:
> 226:
> AnalysisType& llvm::Pass::getAnalysisID(const llvm::PassInfo*,
> llvm::Function&) [with AnalysisType = Pass1]: Assertion
2011 May 18
0
[LLVMdev] 2.9 pass manager asserts "Unable to handle Pass that requires lower level Analysis pass"
Hi,
I am trying to write an LLVM project, using LLVM 2.9. My passes are defined
as follows, where the Pass2 requires Pass1.
namespace llvm {
class BaseClass : public ModulePass {
// Name for printing
const char* printname;
protected:
BaseClass(char id, const char* name)
: ModulePass(id),printname(name){
}
};
class Pass1 : public BaseClass {
public:
static char ID;
Pass1() :
2009 Aug 21
0
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
On Fri, Aug 21, 2009 at 10:48 AM, Marc Brünink<marc at bruenink.de> wrote:
>>> actually my problem is easier. So I still have hope that it is possible:
>>>
>>> MemDep->Pass1->Pass2
>>>
>>> Pass1 uses MemDep. Pass2 only uses Pass1. Eventually, Pass2 changes the
>>> code. Unfortunately, non-local dependencies of MemDep might point to
2009 Aug 21
2
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
Chris Lattner schrieb:
>
> On Aug 20, 2009, at 11:44 AM, Marc Brünink wrote:
>
>> Hi,
>>
>> I do have a FunctionPass that does change the code. This FunctionPass
>> requires another FunctionPass which performs all the necessary analyses.
>> This AnalysisPass again requires MemoryDependenceAnalysis.
>>
>> The problem is, that I would like
2003 Dec 17
3
[LLVMdev] pass position
Suppose, I have a Pass1 implemented as a subclass of Pass, with source code in
the directory of llvm source base( transform/analyze )
I can run that pass through opt on the bytecode emitted by gcc frontend
through opt tool. However, I want that Pass1 to be the part of the actual GCC
compiler. I want to know how I can position Pass1 among other passes
/optimizations/ code generations.
e.g if
2010 Jul 06
0
[LLVMdev] runtime assert failure when trying to obtain analysis pass info within a transformation pass
I am having problems passing analysis results to transformation
passes, so I reduced my testcase into the following bare bone:
Pass1: simple FunctionPass, counting functions
Pass2: transformation pass, for now, just trying to obtain a reference
of Pass1 using AU.getAnalysis<Pass1>() inside its runOnFunction().
When I run it, I get the following runtime error:
opt -load
2012 Sep 25
0
[LLVMdev] Can clang generate the same bitcode with the toolchains that have same version of libraries but different targets
Hi David,
Thank you for your reply.
In fact, my question originally came from the google native client.
I thought that the bitcode can be shared among the different targets as it
inherently is.
Therefore, I used the clang to generate the bitcode to prove that my
thought is right,
and I supposed that the different bitcode caused from the different
versions of libraries before.
Thanks for the
2015 Feb 24
2
[LLVMdev] Accessing a custom defined llvm pass
Hello all,
I have written one pass to collect information about specific calls in an
llvm IR file and am not trying to reference the results from the first pass
in a second pass.
What is the correct way to reference an additional custom pass in LLVM? At
the moment the project is set up under the lib/Transforms directory in
source and has the current layout:
Thresholds/
include/
2007 Dec 17
1
[LLVMdev] Bug 1868: Specifying Pass Orderings
Devang Patel wrote:
>
> On Dec 17, 2007, at 2:01 PM, John Criswell wrote:
>
>> Devang Patel wrote:
>>>
>>> On Dec 17, 2007, at 1:47 PM, John Criswell wrote:
>>>
>>>> Dear Devang Patel,
>>>>
>>>> In response to your comment on bug 1868, how do I get BottomPass to
>>>> requires Pass2 before Pass1? Is it by
1999 Apr 23
14
Windows 2000
Just curious, has anyone gotten Samba to work with Windows 2000? I've
mucked with it a bit. But can't seem to make it go. I haven't tried
applying the NT 4.0 Registry patches yet I will probably take a look at
them and see if I can get them working with Win2000.
Thanks!
-- Steve
"We confuse you, or your money back!"
2024 Oct 07
1
rpcclient setdriver fails with WERR_ACCESS_DENIED
Dear Samba-experts,
I'm trying to setup automatic printer download with our
samba 4.19.4 fileserver which is a domain member of
our samba 4.18.2 AD.
printer drivers have been installed on the fileserver:
root at serv00:# rpcclient -Uprtadmin%pass1 SERV00 -c enumdrivers
[Windows x64]
Printer Driver Info 1:
Driver Name: [Kyocera TASKalfa 5052ci NAEV]
CUPS-printers have been installed
2012 Sep 25
2
[LLVMdev] Can clang generate the same bitcode with the toolchains that have same version of libraries but different targets
Hi Óscar,
Thank you for your reply.
It looks like the limitations are the platform's API and ABI (included the
size of variable).
So, if there are two platforms that have the same API, ABI but different
ISAs, the bitcode can be shared. Can I say that?
Thanks,
Kenia Kuo
2012/9/25 Óscar Fuentes <ofv at wanadoo.es>
> Kenia Kuo <kenkillerkuo at gmail.com> writes:
>
>
1999 Jul 23
1
Possibly a security flaw...
A summary of my problem,
I had wrong UIDs for a user (eg pmal) between the /etc/passwd file and the
smbpasswd file.
When I was trying to loggin from a couple of machines running either win nt
or win 98 I was reading in the log files that the loggin could not be
completed because the UID were wrong but there were instances were I could
loggin from another computer with the same username.
I really
2009 Aug 20
0
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
On Aug 20, 2009, at 11:44 AM, Marc Brünink wrote:
> Hi,
>
> I do have a FunctionPass that does change the code. This FunctionPass
> requires another FunctionPass which performs all the necessary
> analyses.
> This AnalysisPass again requires MemoryDependenceAnalysis.
>
> The problem is, that I would like MemoryDependenceAnalysis to run on
> the
> unaltered