[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: need help with merging in 1.12
|>Hi,
|>
|>I'm currently in the process of merging MiNT 1.12 into the main trunk
|>of my MiNT repository, and I could need some help.
|>
|>Could someone review the differences below (after my .signature)? I
|>don't understand them and don't know whether they should be included
|>in a merged version.
|>[...]
|>@@ -806,6 +806,7 @@
|> tty->pgrp = 0;
|> }
|> #else
|>+#if 0
|> /* release the controlling terminal, if we're the last member of this pgroup
> */
|> fp = curproc->control;
|> if (fp && is_terminal(fp)) {
|>@@ -836,6 +837,7 @@
|> found:
|> ;
|> }
|>+#endif
|> #endif
|> /* close all files */
|> for (i = MIN_HANDLE; i < MAX_OPEN; i++) {
This `patch' seemed to be the reason why I could just log in once on
/dev/console - afterwards the getty-process was always stopped.
I changed the #if 0 into #if 1 and everything works fine again.
Bjarne