Search found 15 matches

by logan_V8
Mon Jan 08, 2007 1:48 pm
Forum: General Discussion and Feedback
Topic: Replace Windows DLLs with ReactOS DLLs?
Replies: 16
Views: 9540

Own address space is a fundamental concept of modern OSs, because with it you have memory protection. An application cannot write outside its own space. There are a lot more things going on with this... :)

Best regards,
Logan_V8
by logan_V8
Mon Jan 08, 2007 10:52 am
Forum: General Discussion and Feedback
Topic: Replace Windows DLLs with ReactOS DLLs?
Replies: 16
Views: 9540

Maybe this link works: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsetup/html/dlldanger1.asp Each application has its dlls loaded into their own address space, so you can have different applications with their own different dlls, which can provide the same functions as other d...
by logan_V8
Sun Jan 07, 2007 7:11 pm
Forum: General Discussion and Feedback
Topic: Replace Windows DLLs with ReactOS DLLs?
Replies: 16
Views: 9540

Hi to everyone!, There is a way to do this, at least in Windows (tm) 2000 or higher. I use it to debug dlls in Windows :). You can view the Microsoft article in this page: The End of DLL Hell - http://msdn2.microsoft.com/en-us/library/ms811694.aspx. If you don't want to read it completely, the only ...
by logan_V8
Wed Aug 02, 2006 11:09 pm
Forum: Development Help
Topic: SoftICE in ReactOS
Replies: 2
Views: 4237

Thanks for your reply :). It seems that no one has tested SoftICE in ReactOS. I will try to try today :P if it works. And yes, SoftICE uses lots of internal functions. It probably won't work. But i would really like to run SoftICE or something like it (currently PICE doesn't even compile in ReactOS)...
by logan_V8
Sun Jul 30, 2006 4:00 am
Forum: Development Help
Topic: SoftICE in ReactOS
Replies: 2
Views: 4237

SoftICE in ReactOS

Hi!,
The other day i was asking myself if SoftICE could be used to do debugging in ReactOS. Well if no one has tested it... how i could modify the registry settings in order to load NTICE.SYS if its possible?.

any insights in this will be very much appreciated.
Regards,
Logan_V8
by logan_V8
Fri May 05, 2006 11:27 pm
Forum: Design
Topic: Dos Subsystem
Replies: 29
Views: 26309

Hi!,
there is a open source qemu accelerator module: qvm86 but its not very well tested (i think). And i missed to say that i was trying to benchmark qemu before, but i didn't succeeded :(.

regards,
Logan_V8
by logan_V8
Fri May 05, 2006 11:14 pm
Forum: Design
Topic: Dos Subsystem
Replies: 29
Views: 26309

Hi!, It's very nice to see that there is some sort of interest of implementing this in ReactOS. I was thinking before in this and i got the conclusion that implementing the original NTVDM of Windows is pretty bad. Many security problems arise in Windows because the original design of the VDM. I thin...
by logan_V8
Fri Apr 07, 2006 6:55 pm
Forum: General Discussion and Feedback
Topic: ROS performance
Replies: 27
Views: 14348

Hi!, one thing that i noted when using ReactOS is that when new windows are opened they always make the mouse cursor to move slowly. There is a way to increse the mouse pointer priority?. Also, there is a way to say that ReactOS is doing something between the window drawings, such as display a busy ...
by logan_V8
Fri Apr 07, 2006 6:45 pm
Forum: General Discussion and Feedback
Topic: POSIX layer
Replies: 22
Views: 10527

Hi!, i don't know very much related to the POSIX subsystem but i found a project time ago that i think that could be useful. That project is a POSIX API implemented in a driver. The source can be found at http://sourceforge.net/projects/winntposix and a description in the Project homepage located at...
by logan_V8
Sat Mar 04, 2006 5:25 am
Forum: Development Help
Topic: compiling error
Replies: 0
Views: 3851

compiling error

Hi!!!!, i'm looking for help... :( yesterday i downloaded from the svn the latest reactos sources found in trunk. I have installed previously the ReactOS Build Enviroment 0.1-3.4.2. I created a directory in my D partition and downloaded ReactOS here (D:\rossrc\trunk). I also installed RosBE in the s...
by logan_V8
Fri Mar 03, 2006 1:09 am
Forum: Spanish
Topic: Virus en reactos0.2.8-REL-qemu.zip
Replies: 8
Views: 14438

Hola! no se que habra pasado con esto, pero al parecer el antivirus NOD le detectó a un amigo un virus en la release 0.2.9. Debe ser una falsa positiva de todas formas. Aunque no se especificamente cual fue el mensaje que le dio. Recordar de todas formas que NOD es un antivirus principalmente heuris...
by logan_V8
Mon Feb 20, 2006 4:20 pm
Forum: General Discussion and Feedback
Topic: status of the ext2 filesystem driver
Replies: 2
Views: 3263

i think that we must wait until the cache manager rewrite is complete :(

thanks for your clear answer :)

regards,
Logan_V8
by logan_V8
Mon Feb 20, 2006 8:18 am
Forum: General Discussion and Feedback
Topic: status of the ext2 filesystem driver
Replies: 2
Views: 3263

status of the ext2 filesystem driver

Hi!, yes i know that many people out there are busy enough thinking about what will happen with the project but i was wondering in what status the ReactOS ext2 filesystem driver was before all this happened. I have done a search in the forum and a topic from 2004 appeared saying that filip had a &qu...
by logan_V8
Sun Feb 19, 2006 10:38 pm
Forum: Development Help
Topic: Strace for Windows NT, XP, 2000
Replies: 0
Views: 7750

Strace for Windows NT, XP, 2000

Hi!!!, the other day i was surfing the internet and i discovered a interesting (?) program to do analysis to the system calls performed by a NT process. The program in question is called Strace, it says that is similar to the Linux Strace, and can be checked out at http://www.bindview.com/Services/R...
by logan_V8
Sat Feb 04, 2006 10:04 pm
Forum: Support
Topic: I have a question about Interrupt handler.
Replies: 1
Views: 3271

Hi!, hmm i think that the code after the jmp "jmp dword ptr cs:[OldIntHandler]" will never get executed (the code will return from the old interrupt handler and you already pushed some things on the stack. This will corrupt the stack pointer :( ). Maybe you could do a call or something. As...