[comp.lang.c++] STDARGS problem on sun4

crom@cuuxb.ATT.COM (Netnews Administrator) (09/03/89)

I'm in the process of porting a C++ application from a sun3 to a sun4 and
I've run into a problem with stdargs.  I wrote the following little test
program to show the problem.  I'm using C++ 2.0.  We're running Sun OS 4.0.


#include <stdarg.h>

void output( int, ... );

main()
{
	output( 1, 2, 3, 0 );
}

void output( int j, ... )
{
	va_list	ap;
	va_start( ap, j );

	int	i;

	printf( "%d\n", j );

	while ( ( i = va_arg( ap, int ) ) != 0 )
	{
		printf( "%d\n", i );
	}

	va_end( ap );
}

On the sun3 the output is as expected:

1
2
3


However, on the sun4 we get:

1
32768
8192


The stdarg.h files for sun3 and sun4 are identical.  Does anyone know the fix
for this or can anyone at least confirm that this problem exists on their
sun4s?  Thanks much.
-- 
--
Jack Dixon,  AT&T
{ ...!att!dopsa!jcd, jcd@dopsa.att.com }

hughes@ns.network.com (Jim Hughes x1676) (09/05/89)

In article <4150@cuuxb.ATT.COM> att!spock!jcd (Jack Dixon) writes:
>
>I'm in the process of porting a C++ application from a sun3 to a sun4 and
>I've run into a problem with stdargs.  I wrote the following little test
>program to show the problem.  I'm using C++ 2.0.  We're running Sun OS 4.0.
>
>The stdarg.h files for sun3 and sun4 are identical.  Does anyone know the fix
>for this or can anyone at least confirm that this problem exists on their
>sun4s?  Thanks much.
>--
>Jack Dixon,  AT&T

If you try using "form(...)" from <streams.h>, I think you will
find the same results.

If you look at the file /usr/include/varargs.h on your sun4 you
will see:

#if defined(sparc)
# define va_alist __builtin_va_alist

This define causes the C compiler to go through some special
gyrations to allow variable arguments.  Even if you merge this 
include file into /usr/include/CC/varargs.h (at least under C++
1.2) the name "__builtin_va_alist" becomes "_au0___builtin_va_alist"
which will NOT trigger the C compiler to produce the correct code from
the "..c" file.

I hope that I am wrong here.  Can anyone tell me is this is still the
case with 2.0. 

Also, is there anyone from Sun (or anywhere else) willing to
talk about a purchasable, supported, with tasking, object version of
the C++ 2.0 port for Sun3 or Sun4?

thanks

jim

hughes@network.com