Why SCO won't show the code
Why SCO won't show the code
Posted Aug 19, 2003 16:15 UTC (Tue) by rfunk (subscriber, #4054)Parent article: Why SCO won't show the code
Oh yeah, and if we go by the Lions book (Unix v6) example, then we can
document that the code dates back to 1976, rather than the 1979 date of
32V.
(I know, I'm picky.)
Posted Aug 19, 2003 18:36 UTC (Tue)
by ken (subscriber, #625)
[Link] (5 responses)
The comment in that file is not the same and some whitespace differs but
Posted Aug 19, 2003 19:09 UTC (Tue)
by mdrejhon (guest, #14189)
[Link]
Photo of SCO Slide: Near exact match to 30 year old source code in V5: What the heck is SCO doing, claiming 30 year old source code as their own?
Posted Aug 19, 2003 19:11 UTC (Tue)
by rfunk (subscriber, #4054)
[Link] (2 responses)
USE OF THE SOFTWARE PROVIDED FOR UNDER THIS LICENSE BY CALDERA
INTERNATIONAL, INC.AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
NO
EVENT SHALL CALDERA INTERNATIONAL, INC. BE LIABLE FOR ANY DIRECT, INDIRECT
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Posted Aug 19, 2003 23:50 UTC (Tue)
by Xman (guest, #10620)
[Link]
Posted Aug 21, 2003 20:31 UTC (Thu)
by Ross (guest, #4065)
[Link]
Seems like an invalid copyright extension to me.
Posted Aug 19, 2003 19:37 UTC (Tue)
by rfunk (subscriber, #4054)
[Link]
ls -l ./usr/sys/ken/malloc.cWhy SCO won't show the code
-rw-r--r-- 1 ken ken 1119 Nov 27 1974 ./usr/sys/ken/malloc.c
I found it in V5 also.
it is the same code.
Found the V5 source code in its entirety:This is 30 year old source code!
http://www.heise.de/newsticker/data/jk-19.08.03-000/imh1.jpg
http://minnie.tuhs.org/UnixTree/V5/usr/sys/ken/malloc.c.html
Hmm, you're right. In my Jan 2002 copy of the tuhs.org site I found
PDP-11/Distributions/research/Dennis_v5/v5root.tar.gz, which contains this
/usr/sys/ken/malloc.c:
Why SCO won't show the code
#
/*
* Copyright 1973 Bell Telephone Laboratories Inc
*/
struct map {
char *m_size;
char *m_addr;
};
malloc(mp, size)
struct map *mp;
{
register int a;
register struct map *bp;
for (bp = mp; bp->m_size; bp++) {
if (bp->m_size >= size) {
a = bp->m_addr;
bp->m_addr =+ size;
if ((bp->m_size =- size) == 0)
do {
bp++;
(bp-1)->m_addr = bp->m_addr;
} while ((bp-1)->m_size = bp->m_size);
return(a);
}
}
return(0);
}
mfree(mp, size, aa)
struct map *mp;
{
register struct map *bp;
register int t;
register int a;
a = aa;
for (bp = mp; bp->m_addr<=a && bp->m_size!=0; bp++);
if (bp>mp && (bp-1)->m_addr+(bp-1)->m_size == a) {
(bp-1)->m_size =+ size;
if (a+size == bp->m_addr) {
(bp-1)->m_size =+ bp->m_size;
while (bp->m_size) {
bp++;
(bp-1)->m_addr = bp->m_addr;
(bp-1)->m_size = bp->m_size;
}
}
} else {
if (a+size == bp->m_addr && bp->m_size) {
bp->m_addr =- size;
bp->m_size =+ size;
} else if (size) do {
t = bp->m_addr;
bp->m_addr = a;
a = t;
t = bp->m_size;
bp->m_size = size;
bp++;
} while (size = t);
}
}
Copyright (C) Caldera International Inc. 2001-2002. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
This product includes software developed or owned by
Caldera International, Inc.
Note that because this has the advertising clause, it's actually GPL incompatible.
Why SCO won't show the code
This isn't really relavant to the current issue, but how can they put aCopyright date
2002 copyright date on a file which was not changed since written and
published in 1973? The file even contains the original 1973 copyright
notice.
"nsys" code, Aug 1973, dating between v3 and v4. Why SCO won't show the code
http://minnie.tuhs.org/UnixTree/Nsys/sys/nsys/dmr/malloc.c.html
The v6 code (May 1975) is where these comments are introduced.
http://minnie.tuhs.org/UnixTree/V6/usr/sys/ken/malloc.c.html