~ubuntu-branches/debian/sid/grub2/sid-200907171846

« back to all changes in this revision

Viewing changes to kern/generic/millisleep.c

  • Committer: Bazaar Package Importer
  • Author(s): Felix Zielcke, Updated translations
  • Date: 2009-03-17 14:42:10 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20090317144210-nbg2w4aitrb24v99
Tags: 1.96+20090317-1
* New SVN snapshot.
  - Fix loading of files with underscore in HFS. (Closes: #516458)

* Update Standards version to 3.8.1. No changes need.

[ Updated translations ]
* Brazilian Portuguese (pt_BR.po) by Flamarion Jorge. (Closes: #519417)

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
  start = grub_get_time_ms ();
31
31
 
32
 
  /* Instead of setting an end time and looping while the current time is
 
32
  /* Instead of setting an end time and looping while the current time is 
33
33
     less than that, comparing the elapsed sleep time with the desired sleep
34
 
     time handles the (unlikely!) case that the timer would wrap around
 
34
     time handles the (unlikely!) case that the timer would wrap around 
35
35
     during the sleep. */
36
36
 
37
37
  while (grub_get_time_ms () - start < ms)