This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 02/04] add SPU gettimeofday


Patrick Mansfield <patmans@us.ibm.com> wrote:
> Index: time-fix-spu/libgloss/spu/jsre.h
> ===================================================================
> --- time-fix-spu.orig/libgloss/spu/jsre.h
> +++ time-fix-spu/libgloss/spu/jsre.h
(snip)
>  typedef struct
>  {
> +	unsigned int	tv;
> +	unsigned int	tz;
> +	unsigned int	pad0[ 3 ];
> +} syscall_gettimeofday_t;

Is it correct ?
I supporse that it should be:

--
typedef struct
{
	unsigned int	tv;
	unsigned int	pad0[ 3 ];
	unsigned int	tz;
} syscall_gettimeofday_t;
--

--
(ASAYAMA Kazunori
  (asayama@sm.sony.co.jp))
t


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]