Re: [ros-dev] Status Meeting (May 2018) - topic "get the demo laptop running completly and enable automated tests"

2018-05-30 Thread michael
and a network power switch to make such setup possible. Best regards, Michael Fritscher P.S. Timely speaking, I've time tomorrow. Am 2018-05-28 09:15, schrieb Colin Finck: Hi all! Let me invite you to the May 2018 meeting, taking place this Thursday, May 31, 2018 at 19:00 UTC. Invited mem

Re: [ros-dev] Google Summer of Code 2019

2018-11-29 Thread michael
ority working. NVivida could be worth a try as well. Best regards, Michael Fritscher P.S. Or should I try to add it to the wiki even despite the fact I will not be able to mentor it (because of lack of knowledge) ? P.P.S. Another idea could be a OS AC97/HDA audio driver or network driver

Re: [ros-dev] Status Meeting (November 2020)

2020-11-26 Thread michael
think the first question/solution could be a short time compromise, the rest points at the "real" long time solution: targeting a newer Windows version.. Best regards, Michael Fritscher ___ Ros-dev mailing list Ros-dev@reactos.org http:/

Re: [ros-dev] My problems with github.

2022-03-28 Thread michael
Good day; https://reactos.org/wiki/ReactOS_Git_For_Dummies is a nice tutorial. It can even be used for most projects on github, not only ReactOS.. Best regards Michael Am 2022-03-28 22:54, schrieb Raymond Czerny: Hello, my experience with git so far boils down to a 1:1 relationship of the

Re: [ros-dev] [ros-diffs] [mjmartin] 40630: - edit.c: Add TPM_RETURNCMD flag to TrackPopupMenu so that WM_COMMAND messages are not sent to the edit control. Use WM_MENUSELECT vice WM_COMMAND to determ

2009-04-21 Thread Michael Martin
I submitted the same changes to wine. Do we need to revert and wait till they make the changes, which may very well be different? Even though I usually frown upon static variables myself, can you explain why using a static variable here a bad idea? Fairly certain the problems in edit.c, did tes

Re: [ros-dev] [ros-diffs] [mjmartin] 40557: - Add volatile to variables in OutputDebugStringA. Fix #1 of ? for 3424.

2009-04-21 Thread Michael Martin
IIRC, at one point, someone had said something along the lines that under certain criteria variables used inside SEH2 blocks had to be declared with volatile. Not sure if this had been fixed but either way it does looks like an SEH problem. martin > Date: Sat, 18 Apr 2009 12:36:31 +0200 > Fr

Re: [ros-dev] [ros-diffs] [mjmartin] 40630: - edit.c: Add TPM_RETURNCMD flag to TrackPopupMenu so that WM_COMMAND messages are not sent to the edit control. Use WM_MENUSELECT vice WM_COMMAND to determ

2009-04-21 Thread Michael Martin
ssage to send. - Fixes vb apps e Michael Martin wrote: I submitted the same changes to wine. Do we need to revert and wait till they make the changes, which may very well be different? Even though I usually frown upon static variables myself, can you explain why using a static var

Re: [ros-dev] I want to develop the kernel of ReactOS, how do i join????

2009-05-16 Thread Michael Martin
This is treading on thin ice. In my opinion, anyone having admitted to having accessed MS source code should not be allowed to write code for ReactOS and should never get commit access. Working on something not related to the source someone has seen, should still be a no go. As this will still i

Re: [ros-dev] [ros-diffs] [mjmartin] 41269: - IopCreateDriver: Change MajorFunction routines back to internal function IopInvalidDeviceRequest for ones that were set to NULL in the Drivers DriverEntry

2009-06-03 Thread Michael Martin
If you have time, could you please point out what is wrong with this referenced commit besides the line, DriverObject->Flags = DRVO_LEGACY_DRIVER;//DRVO_BUILTIN_DRIVER; which was accidentally committed, which will be corrected. The behavior for restoring IopInvalidDeviceRequest was verified in

Re: [ros-dev] On the growth of the reactos project

2009-07-17 Thread Michael Martin
Ok > BTW, I think it would be interesting if other people on this list said > how they first find out about ReactOS. I read the ROS-DEV mailing list to get information on development issues and the like, not to read everyone story on how they found ROS. IMO this stuff needs to be kept on the f

Re: [ros-dev] [ros-diffs] [tkreuzer] 42353: asm version of DIB_32BPP_ColorFill: - Add frame pointer - Get rid of algin_draw, 32bpp surfaces must be DWORD aligned - Optimize the loop - Add comments

2009-08-04 Thread Michael Steil
ons first look at the size of the region, and branch to one of three different implementations. Small regions use rep stosb, bigger ones SSE or the like. (I'm sure NT does something similar.) If you are more into static optimization, or want to give the compiler hints about the typical size of the region, you could do some clever macro hacks that supply the typical size range as an extra argument to memcpy(), so that the best version can be chosen at preprocessing time, without the need for the size check in the compiled code - if, for example, DIB_32BPP_ColorFill() typically did memcpy()s of smaller sizes. Michael ___ Ros-dev mailing list Ros-dev@reactos.org http://www.reactos.org/mailman/listinfo/ros-dev

Re: [ros-dev] [ros-diffs] [tkreuzer] 42353: asm version of DIB_32BPP_ColorFill: - Add frame pointer - Get rid of algin_draw, 32bpp surfaces must be DWORD aligned - Optimize the loop - Add comments

2009-08-04 Thread Michael Steil
the optimal implementation: Like XNU does it, for example: http://fxr.watson.org/fxr/source/osfmk/i386/commpage/?v=xnu-1228 Michael #include #include #include #define MIN(a,b) ((a)<(b)? (a):(b)) #define DATASIZE (1024*1024) #define TIMES 1 static inline long long rdtsc64(voi

Re: [ros-dev] I'm back

2009-09-22 Thread Michael Martin
I have been busy in rl with new house and work. I probably wont be able to do much until Nov-Dec, at which point Ill probably fix the last few bugs for wine kernel virtual tests and then go back to fixing misc bugs. Mike > From: alek...@reactos.org > Date: Sat, 19 Sep 2009 02:00:07 +0400

Re: [ros-dev] [ros-diffs] [mjmartin] 47059: [win32k] - Fix a problem where application that used WH_CBT hook procedures were receiving destroy window notification on windows that were never created.

2010-04-30 Thread Michael Martin
Hook = IntGetFirstValidHook(Table, HookId) in function co_HOOK_CallHooks line 345. This value is being returned from the call KiCallUserMode. So maybe some stack trashing going on. Michael > Date: Thu, 29 Apr 2010 18:56:36 -0500 > From: jimtabor.ros...@gmail.com > To: ros-dev@reactos.org >

Re: [ros-dev] [ros-diffs] [mjmartin] 47226: [win32k] - Change the first parameter type from HWND to PWINDOW_OBJECT for IntKillTimer as it makes more sense. Activate IntSetTimer, already done by James.

2010-05-17 Thread Michael Martin
PWINDOW_OBJECT forIntKillTimer as it makes more sense. Activate IntSetTimer, already done by James. - Add flag TMRF_DELETEPENDING. Destroy timerswhe at last! All hail mjmartin! :-) On Mon, May 17, 2010 at 9:41 AM, Ged Murphy wrote: Congrats, good stuff Michael :) -Original Message

Re: [ros-dev] Concerning regedit r47251: inform the user that search is complete

2010-05-17 Thread Michael Martin
Wow, i let that one slip by me. Thanks. Date: Mon, 17 May 2010 13:59:25 +0200 From: grschnei...@gmail.com To: ros-dev@reactos.org Subject: [ros-dev] Concerning regedit r47251: inform the user that search is complete Hi Michael, there is no need to hardcode the messagebox output language

Re: [ros-dev] [ros-diffs] [tkreuzer] 47295: [WIN32K / USER32] Convert the window text string from UNICODE_STRING to LARGE_STRING and fix NtUserCreateWindowEx parameters. We currently still pass UNICOD

2010-05-23 Thread Michael Martin
James, We hope you have a full and quick recovery. Looking forward to having you back in the battle. > Date: Sun, 23 May 2010 02:41:14 -0500 > From: jimtabor.ros...@gmail.com > To: ros-dev@reactos.org > Subject: Re: [ros-dev] [ros-diffs] [tkreuzer] 47295: [WIN32K / USER32] > Convert the w

Re: [ros-dev] [ros-diffs] [mjmartin] 47393: [win32k] - The timer is created usingUserCreateObject. It may be a good idea to save the handle in the timer object so that it can be deleted later. - Deref

2010-05-30 Thread Michael Martin
Yes EnterUserExclusive is used alot elsewhere in win32k and we dont really need to use it with timers, so its inefficient. I'm going to change this so that timers use thier own lock. mike Date: Sun, 30 May 2010 23:48:11 +0100 From: gedmur...@gmail.com To: ros-dev@reactos.org Subject: Re: [ros-d

Re: [ros-dev] Regarding 48632

2010-08-27 Thread Michael Martin
No problem mate, it happens. Was not 100% positive on the placement. Ill add a comment a bit later there to remind you. mjmartin > From: ros@reactos.org > To: ros-dev@reactos.org > Date: Sat, 28 Aug 2010 04:55:06 +0200 > Subject: [ros-dev] Regarding 48632 > > Hello, > > Many thank

Re: [ros-dev] uLan USB driver for ReactOS - query for help if possible

2010-09-15 Thread Michael Martin
, Michael Martin > From: ppisa4li...@pikron.com > To: ros-dev@reactos.org > Date: Wed, 15 Sep 2010 10:19:19 +0200 > Subject: [ros-dev] uLan USB driver for ReactOS - query for help if possible > > Hello to all ReactOS developers, > > thanks for great work. I

Re: [ros-dev] ASSERT while shutting down ReactOS with VirtualBox Guest Additions installed

2010-09-16 Thread Michael Martin
I don't think this has anything to do with amount of memory. Just glancing at the assert, I think that the vbox video driver that got installed was for made for win2008, in which MmFreeContiguousMemory can be called at IRQL<=DISPATCH_LEVEL. In reactos we Are using PAGED_CODE, which causes the a

Re: [ros-dev] ASSERT while shutting down ReactOS with VirtualBox Guest Additions

2010-09-16 Thread Michael Martin
You are indeed correct, sir. The ReactOS website even reads that its XP/2003. Sorry, my mistake. Mike > From: ros@reactos.org > To: ros-dev@reactos.org > Date: Fri, 17 Sep 2010 04:33:14 +0200 > Subject: Re: [ros-dev] ASSERT while shutting down ReactOS with VirtualBox > Guest Additions > >

Re: [ros-dev] Video of ReactOS Booting on ARM

2010-11-22 Thread Michael Martin
Nice work! Looking forward to seeing a desktop :) . mjmartin > From: ros@reactos.org > To: ros-dev@reactos.org > Date: Tue, 23 Nov 2010 01:40:11 +0100 > Subject: [ros-dev] Video of ReactOS Booting on ARM > > Hello, > > As some have asked, > > http://www.youtube.com/watch?v=RFNuY2OFRjU&hd=

Re: [ros-dev] [ros-diffs] [fireball] 50108: [NTOS] - Fix memory region size calculation in MemoryBasicInformation in certain cases

2010-12-22 Thread Michael Martin
Looks like a nice catch to me. mjmartin From: vicmar...@hotmail.com To: ros-dev@reactos.org Date: Thu, 23 Dec 2010 04:08:03 + Subject: [ros-dev] [ros-diffs] [fireball] 50108: [NTOS] - Fix memory region size calculation in MemoryBasicInformation in certain cases I have a doubt: ===

Re: [ros-dev] Releasing

2011-02-15 Thread Michael Martin
For some reason I didn't get Timo's or Aleksey's emails to mailing list. Anyway Timo's suggestions sound good. Ill should have time starting tomorrow for looking at bugs. mike > From: gedmur...@gmail.com > To: ros-dev@reactos.org > Date: Tue, 15 Feb 2011 10:04:14 + > Subject: Re: [ros-dev]

Re: [ros-dev] New builder available

2011-03-18 Thread Michael Martin
Nice work! Date: Fri, 18 Mar 2011 10:42:38 +0100 From: cae...@gmail.com To: ros-dev@reactos.org Subject: [ros-dev] New builder available Dear colleagues I am very pleased to inform you that a new builder has been just made operational. Named Patch_x86_GCCWin Debug, you can see it waterfall righ

Re: [ros-dev] [ros-diffs] [gadamopoulos] 51115: [ntoskrnl] - Implement calling OkayToCloseProcedure callouts to win32k for desktop and window station objects - Fix a bug that caused ObpCloseHandle to

2011-03-23 Thread Michael Martin
Uhhh No. I am sure everyone appreciates any constructive comments pointing out bugs or flaws. Especially from someone like Alex that knows his stuff. But if you come across as cocky and demeaning while doing this, your bound to get some disrespect, whether your name is on cover of Windows Inter

Re: [ros-dev] Meeting on Thursday

2011-03-31 Thread Michael Martin
Colin Finck (Colin_Finck) > - Danny Götte (dangerground) > - Cameron Gutman (aicom) > - Ziliang Guo (ZWabbit) > - Rafal Harabien (rafalh) > - Kamil Hornicek (Pigglesworth) > - Amine Khaldi (AmineKhaldi) > - Timo Kreuzer (tkreuzer) > - Matthias Kupfer (Collibri) > - Michael M

Re: [ros-dev] Re : HDD Geometry switch

2011-11-27 Thread Michael Fritscher
need e.g. some additional fixed spaces (e.g. the sectors directly behind the mbr), hardcoded values etc. Regards, Michael Fritscher ___ Ros-dev mailing list Ros-dev@reactos.org http://www.reactos.org/mailman/listinfo/ros-dev

Re: [ros-dev] [ros-diffs] [ekohl] 59026: [FASTFAT] Reverted revisions 59023, 59022 and 58976.

2013-05-20 Thread Michael Fritscher
ered a memory corruption, especially because the behavior at the kvm-testbot, but not at the vmware-testbot changed... Best regards, Michael Fritscher > Author: ekohl > Date: Fri May 17 17:52:43 2013 > New Revision: 59026 > > URL: http://svn.reactos.org/svn/reactos?rev=59026&view=r

Re: [ros-dev] ReactOS website issues

2013-11-16 Thread Michael Fritscher
RAM, but that shouldn't be too much - und if you need to replay backups you loose always by average 12 hours - so 5-10 minutes more ore less aren't that important ;) Best regards, Michael Fritscher ___ Ros-dev mailing list Ros-dev@reacto

Re: [ros-dev] [ros-diffs] [ekohl] 61145: [FASTFAT] FsdGetFsVolumeInformation: Return volume creation time.

2013-12-02 Thread Michael Fritscher
FAT-driver shouldn't be too complicated if we managed to write a NTFS-driver^^ Best regards, Michael Fritscher ___ Ros-dev mailing list Ros-dev@reactos.org http://www.reactos.org/mailman/listinfo/ros-dev

Re: [ros-dev] [ros-diffs] [tkreuzer] 61755: [KSECDD] Implement IRP_MJ_QUERY_INFORMATION and IRP_MJ_QUERY_VOLUME_INFORMATION

2014-01-22 Thread Michael Fritscher
tion is supported */ > +if (FsInformationClass == FileFsDeviceInformation) > +{ > +return STATUS_INVALID_INFO_CLASS; > +} shouldn't be that "FsInformationClass != FileFsDeviceInformation" ? ;) Best regards, Michael Fritscher ___

Re: [ros-dev] [ros-diffs] [pschweitzer] 65367: [PARTTEST] Add a dummy application that will open first disk and check first sector for MBR and then will open first partition to check for something kno

2014-11-10 Thread Michael Fritscher
Hi, > +if (Sector->BytesPerSector * Sector->SectorsPerCluster > 32 * 1024) > +{ > +return FALSE; > +} FAT supports cluster sizes until 64KB ;-) At least the WinNT series can work with them. Best regards, Michael Fritscher __

Re: [ros-dev] [ros-diffs] [pschweitzer] 65596: [NTOSKRNL] THE oneliner.... Properly read the information from the IRP to get the reparse tag. This fixes the handling of reparse mount points in ReactOS

2014-12-10 Thread Michael Fritscher
even the login-Screen doesn't appear... Best regards, Michael Fritscher ___ Ros-dev mailing list Ros-dev@reactos.org http://www.reactos.org/mailman/listinfo/ros-dev

Re: [ros-dev] [ros-diffs] [akhaldi] 67974: [USER32] Sync edit.c with Wine Staging 1.7.37. CORE-9246

2015-05-30 Thread Michael Fritscher
Dx == NULL) { return FALSE; //Not sure about this, just looked at the diff ;) } #endif would be usefull there. Best regards, Michael Fritscher > Author: akhaldi > Date: Sat May 30 17:14:16 2015 > New Revision: 67974 > > URL: http://svn.reactos.org/svn/r

Re: [ros-dev] Vote for removing rapps DB from trunk

2015-05-30 Thread Michael Fritscher
Hi, if I'm right this database is downloaded by the tool at runtime, isn't it? So it isn't needed to build a reactos-iso whith useful rapps, is it? Then it could be moved in my opinion. Best regards, Michael Fritscher > Hey guys, > > > as some of you might have s

Re: [ros-dev] [ros-diffs] [pschweitzer] 69683: [CRT] Fix NTDLL implementation of mbstowcs() and wcstombs() so that they return length in caracters and not in bytes. This fixes last failing *to* CRT ap

2015-10-25 Thread Michael Fritscher
ze_t)Size; > + return (size_t)(Size / sizeof(wchar_t));; > } > > /* EOF */ Tiny, not critical typo: Two semicolons ;-) Best regards, Michael Fritscher ___ Ros-dev mailing list Ros-dev@reactos.org http://www.reactos.org/mailman/listinfo/ros-dev

Re: [ros-dev] [ros-diffs] [hbelusca] 69936: [USER32] Implement now-documented MB_GetString. See: https://msdn.microsoft.com/en-us/library/windows/desktop/dn910915(v=vs.85).aspx and: http://undoc.aires

2015-11-18 Thread Michael Fritscher
then the check in the next line should be >, shouldn't it? Best regards, Michael ___ Ros-dev mailing list Ros-dev@reactos.org http://www.reactos.org/mailman/listinfo/ros-dev

Re: [ros-dev] Patch situation

2015-11-22 Thread Michael Fritscher
nds like a good idea :-) Best regards, Michael ___ Ros-dev mailing list Ros-dev@reactos.org http://www.reactos.org/mailman/listinfo/ros-dev

Re: [ros-dev] [ros-diffs] [dchapyshev] 72787: [NTOSKRNL] Remove unneeded sanity checks

2016-09-24 Thread Michael Fritscher
Hi, hmm, what are disadvantages of these checks? If MS uses them as well these shouldn't break anything. Perfomancewise there shouldn't be a difference, and in release builds they are disabled anyways, aren't they? I only want to get a better unterstanding ;-) Best regards, Mi

Re: [ros-dev] [ros-diffs] [ekohl] 74054: [NTOS:OB] Create a custom security descriptor for the global DosDevices directory.

2017-03-04 Thread Michael Fritscher
Hi, only as a short reference. Some allocation sizes seems to be hardcoded or have "Magic constants" in them... I think worth to look at ;) Best regards, Michael michi@michis-toshiba:~/code/reactos/reactos/ntoskrnl$ grep -r "ExAllocatePool(" ke/i386/cpu.c:New

Re: [ros-dev] [ros-diffs] [mjansen] 74063: [NTDLL] Fix RtlDecodeSystemPointer for usage inside ntdll. CORE-10368

2017-03-04 Thread Michael Fritscher
Hi, I don't know - but this looks somehow ... surprising. Best regards, Michael > /* > * @implemented > + */ > +PVOID > +NTAPI > +RtlDecodeSystemPointer(IN PVOID Pointer) > +{ > +return RtlEncodeSystemPointer(Pointer); >

Re: [ros-dev] [ros-diffs] [mjansen] 74063: [NTDLL] Fix RtlDecodeSystemPointer for usage inside ntdll. CORE-10368

2017-03-05 Thread Michael Fritscher
Ah, ok, thanks :-) XOR as encoding *grin* > It's following the same style as RtlDecodePointer, > and since it's a simple xor > > On Sat, Mar 4, 2017 at 10:02 PM, Michael Fritscher > wrote: >> Hi, >> >> I don't know - but this looks someho

Re: [ros-dev] [ros-diffs] [khornicek] 74209: [RAPPS] - Add a custom build of the Mesa 3D Graphics Library. This build contains mesa, gallium and llvmpipe. It provides an enormous performance boost ove

2017-03-21 Thread Michael Fritscher
Hi, the "special samba edition" is sort of the same thing I think. I don't know, but could the mesa source be stripped down? Best regards, Michael Fritscher > And another reason to make our SVN source tree structure modularized. > > -Message d'origine- &

Re: [ros-dev] Opening up #reactos-dev to the public

2017-03-25 Thread Michael Fritscher
Too many chans will clutter it, in the end the devs will have to join 10 chans. The chans aren't that high-traffic ones. I think we should yust try to do a -m and see what happens. > Yes, that's a better idea. #reactos-gsoc > > On Fri, Mar 24, 2017 at 6:53 PM, Alex Ionescu wrote: > >> I don't ag

Re: [ros-dev] Vgal USB patches

2017-04-05 Thread Michael Fritscher
Hi, hmm, he could upload a patchfile/set (svn or git) and upload this file "somewhere" (e.g. in jira, or to a file service). Then it can be uploaded to a (or his) SVN-branch for further review and testing. This part is I think the smallest problem ;-) Best regard

Re: [ros-dev] "Note: LibreOffice 5.4 will be the last codeline tosupport Windows XP or Vista"

2017-07-01 Thread Michael Fritscher
Hi, is there a list which need to be done to get the basic NT6 architecture just to get feeling how much work it is? Sadly, I'm afraid that we'll need a proper NT6 architecture to get modern drivers running, won't we? Best regards, Michael Fritscher On 30.06.2017 11:46, G

Re: [ros-dev] Git Migration Newsletter

2017-09-10 Thread Michael Fritscher
Hi, are there estimation about the size of a git clone vs. a svn checkout? I'm afraid that I'll need to free much space beforehand... Best regards, Michael Fritscher > If you mean your local working copy: clone into a separate folder, and > copy > over the files. Subversion c

Re: [ros-dev] Git Migration Newsletter

2017-09-10 Thread Michael Fritscher
gt; > On 10 September 2017 at 14:24, David Quintana (gigaherz) > > wrote: > >> The git repository data is compressed, and takes in the order of 100 mb. >> The checkout size will be somilar but the .git folder is much more >> compact >> than the .svn folder.

Re: [ros-dev] Merging our x86 HALs

2017-12-13 Thread Michael Fritscher
0KB? Btw, ACPI went into the mass market ca. 1998. On these days, 32 MB RAM were normal. ReactOS wouldn't even boot on these machines. Best regards, Michael Fritscher ___ Ros-dev mailing list Ros-dev@reactos.org http://www.reactos.org/mailman/listinfo/ros-dev

Re: [ros-dev] Making bluescreens more useful

2018-01-12 Thread Michael Fritscher
Hi, yes, that would be very, very nice! Michael On 11.01.2018 11:45, Colin Finck wrote: > I'm supporting Thomas idea and Pierre's additional suggestions. > Let's show the world that BSODs can be useful! > > - Colin > > > Am 11.01.2018 um 07:36 schrieb P

Re: [ros-dev] [ros-diffs] 01/04: [REACTOS] RtlAssert(): use "%lu" as LineNumber format.

2018-08-08 Thread Michael Fritscher
iledAssertion, > + (PCHAR)FileName, > + LineNumber, > + Message); > +} > +else > +{ > +DbgPrint("Assertion \'%s\' failed at %s line %u\n", > + (PCHAR)FailedAssertio

Re: [ros-dev] [ros-diffs] [reactos] 02/02: [MOUNTMGR][MUP] Use global definition of INIT_FUNCTION/INIT_SECTION (Addendum to 71fefa32).

2019-01-27 Thread Michael Fritscher
ntmgr.c(1810) : error C2983: 'DriverEntry' : all declarations must have an identical __declspec(code_seg(...)) C:\Buildslave\Build_MSVC_x86\build\drivers\filters\mountmgr\mntmgr.h(179) : see declaration of 'DriverEntry' Best regards, Michael Fritscher On 27.01

Re: [ros-dev] Using git for all ros source as main revision control

2009-04-12 Thread Michael B. Trausch
On Sun, 12 Apr 2009 01:13:47 -0500 Zachary Gorden wrote: > This was discussed amongst the developers. A fair portion objected, > and rather strongly at that. I happen to be one of them. Its > "performance" is oversold and its support for Windows remains a > problem point. And with the new bra

Re: [ros-dev] Using git for all ros source as main revision control

2009-04-12 Thread Michael B. Trausch
On Sun, 12 Apr 2009 12:18:15 -0700 Alex Ionescu wrote: > On Sun, Apr 12, 2009 at 10:38 AM, Michael B. Trausch > wrote: > > The big players ATM in DVCS are git and Bazaar, though.  (And hg, > > mentioned elsewhere in this thread, is also written in Python and > > so i

Re: [ros-dev] Using git for all ros source as main revision control

2009-04-13 Thread Michael B. Trausch
On Sun, 12 Apr 2009 15:23:02 -0500 King InuYasha wrote: > Aside from Launchpad, not many people actually like using Bazaar > because it has the worst performance of the three by far. The performance argument is a quite old one. I certainly wouldn't say that current bzr is as fast as current git