public inbox for java-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug java/14892] New: Issues with TimerTask/Calendar
@ 2004-04-08 16:46 verigoth at maug dot wireless dot mnsu dot edu
  2004-04-08 16:52 ` [Bug libgcj/14892] " pinskia at gcc dot gnu dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: verigoth at maug dot wireless dot mnsu dot edu @ 2004-04-08 16:46 UTC (permalink / raw)
  To: java-prs

I noticed there are already bug reports for Calendar, but I don't think any of
them cover this aspect:

            Calendar now = Calendar.getInstance();
            Calendar myCal = Calendar.getInstance();

            myCal.set(Calendar.HOUR_OF_DAY, 23);
            myCal.set(Calendar.MINUTE, 59);
            myCal.set(Calendar.SECOND, 59);

            long resetTime = myCal.getTimeInMillis() - now.getTimeInMillis();

            turnTimer.scheduleAtFixedRate(new TurnTask(keeper), resetTime,
86400000);

If I do a System.out.println(resetTime) and calculate milliseconds to hours it
is always >25.  Then if I subtract 86400000 it will display correctly but it
doesn't run the task.  Other Java compilers do this correctly so it's not my
poor code causing the issue. ;)  I have another TimerTask that starts looks like
this:
respawnTimer.scheduleAtFixedRate(new ResetTask(keeper), 0, 35000);
which works just fine.

-- 
           Summary: Issues with TimerTask/Calendar
           Product: gcc
           Version: 3.3.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: java
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: verigoth at maug dot wireless dot mnsu dot edu
                CC: gcc-bugs at gcc dot gnu dot org,java-prs at gcc dot gnu
                    dot org
 GCC build triplet: x86
  GCC host triplet: x86
GCC target triplet: x86


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14892


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libgcj/14892] Issues with TimerTask/Calendar
  2004-04-08 16:46 [Bug java/14892] New: Issues with TimerTask/Calendar verigoth at maug dot wireless dot mnsu dot edu
@ 2004-04-08 16:52 ` pinskia at gcc dot gnu dot org
  2005-03-23 21:36 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-04-08 16:52 UTC (permalink / raw)
  To: java-prs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-04-08 16:52 -------
Could you possibly try a snapshot of GCC 3.4.0 as there was at least one Calendar issue fixed in there.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|java                        |libgcj


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14892


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libgcj/14892] Issues with TimerTask/Calendar
  2004-04-08 16:46 [Bug java/14892] New: Issues with TimerTask/Calendar verigoth at maug dot wireless dot mnsu dot edu
  2004-04-08 16:52 ` [Bug libgcj/14892] " pinskia at gcc dot gnu dot org
@ 2005-03-23 21:36 ` cvs-commit at gcc dot gnu dot org
  2005-03-23 21:38 ` cvs-commit at gcc dot gnu dot org
  2005-03-24 16:57 ` tromey at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-03-23 21:36 UTC (permalink / raw)
  To: java-prs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-03-23 21:26 -------
Subject: Bug 14892

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	tromey@gcc.gnu.org	2005-03-23 21:26:00

Modified files:
	libjava        : ChangeLog 
	libjava/java/text: SimpleDateFormat.java 
	libjava/java/util: Calendar.java GregorianCalendar.java 

Log message:
	2005-03-23  Sven de Marothy  <sven@physto.se>
	
	PR libgcj/2641, PR libgcj/9854, PR libgcj/14892, PR libgcj/18083,
	PR libgcj/11085:
	* java/util/Calendar.java
	(set): Use starting day of week when one is needed if none is given.
	* java/text/SimpleDateFormat.java
	(parse): Handle 1-12 and 1-24 timestamps correctly.
	* java/util/GregorianCalendar.java
	(computeTime, computeFields): HOUR should be in 0-11 format.
	(nonLeniencyCheck): Adjust leniency checking to that fact.
	(getLinearDay): Should be private.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libjava/ChangeLog.diff?cvsroot=gcc&r1=1.3431&r2=1.3432
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libjava/java/text/SimpleDateFormat.java.diff?cvsroot=gcc&r1=1.32&r2=1.33
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libjava/java/util/Calendar.java.diff?cvsroot=gcc&r1=1.27&r2=1.28
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libjava/java/util/GregorianCalendar.java.diff?cvsroot=gcc&r1=1.26&r2=1.27



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14892


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libgcj/14892] Issues with TimerTask/Calendar
  2004-04-08 16:46 [Bug java/14892] New: Issues with TimerTask/Calendar verigoth at maug dot wireless dot mnsu dot edu
  2004-04-08 16:52 ` [Bug libgcj/14892] " pinskia at gcc dot gnu dot org
  2005-03-23 21:36 ` cvs-commit at gcc dot gnu dot org
@ 2005-03-23 21:38 ` cvs-commit at gcc dot gnu dot org
  2005-03-24 16:57 ` tromey at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-03-23 21:38 UTC (permalink / raw)
  To: java-prs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-03-23 21:36 -------
Subject: Bug 14892

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-4_0-branch
Changes by:	tromey@gcc.gnu.org	2005-03-23 21:36:25

Modified files:
	libjava        : ChangeLog 
	libjava/java/util: Calendar.java GregorianCalendar.java 
	libjava/java/text: SimpleDateFormat.java 

Log message:
	2005-03-23  Sven de Marothy  <sven@physto.se>
	
	PR libgcj/2641, PR libgcj/9854, PR libgcj/14892, PR libgcj/18083,
	PR libgcj/11085:
	* java/util/Calendar.java
	(set): Use starting day of week when one is needed if none is given.
	* java/text/SimpleDateFormat.java
	(parse): Handle 1-12 and 1-24 timestamps correctly.
	* java/util/GregorianCalendar.java
	(computeTime, computeFields): HOUR should be in 0-11 format.
	(nonLeniencyCheck): Adjust leniency checking to that fact.
	(getLinearDay): Should be private.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libjava/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.3391.2.22&r2=1.3391.2.23
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libjava/java/util/Calendar.java.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.27&r2=1.27.2.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libjava/java/util/GregorianCalendar.java.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.26&r2=1.26.2.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libjava/java/text/SimpleDateFormat.java.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.32&r2=1.32.2.1



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14892


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libgcj/14892] Issues with TimerTask/Calendar
  2004-04-08 16:46 [Bug java/14892] New: Issues with TimerTask/Calendar verigoth at maug dot wireless dot mnsu dot edu
                   ` (2 preceding siblings ...)
  2005-03-23 21:38 ` cvs-commit at gcc dot gnu dot org
@ 2005-03-24 16:57 ` tromey at gcc dot gnu dot org
  3 siblings, 0 replies; 5+ messages in thread
From: tromey at gcc dot gnu dot org @ 2005-03-24 16:57 UTC (permalink / raw)
  To: java-prs


------- Additional Comments From tromey at gcc dot gnu dot org  2005-03-23 21:37 -------
Fix checked in.


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.0.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14892


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-03-23 21:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-04-08 16:46 [Bug java/14892] New: Issues with TimerTask/Calendar verigoth at maug dot wireless dot mnsu dot edu
2004-04-08 16:52 ` [Bug libgcj/14892] " pinskia at gcc dot gnu dot org
2005-03-23 21:36 ` cvs-commit at gcc dot gnu dot org
2005-03-23 21:38 ` cvs-commit at gcc dot gnu dot org
2005-03-24 16:57 ` tromey at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).