~ubuntu-branches/ubuntu/vivid/golang/vivid

« back to all changes in this revision

Viewing changes to src/pkg/runtime/time.goc

  • Committer: Package Import Robot
  • Author(s): Ondřej Surý, Ondřej Surý, Michael Stapelberg
  • Date: 2012-06-28 12:14:15 UTC
  • mfrom: (14.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20120628121415-rujz1ij5jcwhrhpe
Tags: 2:1.0.2-1
[ Ondřej Surý ]
* Imported Upstream version 1.0.2
* Update Vcs fields to reflect new git repository location
* Kill get-orig-source, since 1.0.0, the tarballs can be downloaded
  from webpage

[ Michael Stapelberg ]
* golang-mode: use debian-pkg-add-load-path-item (Closes: #664802)
* Add manpages (Closes: #632964)
* Use updated pt.po from Pedro Ribeiro (Closes: #674958)

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
{
62
62
        Timer t;
63
63
 
64
 
        if(ns <= 0)
 
64
        if(ns <= 0) {
 
65
                g->status = Grunning;
 
66
                g->waitreason = nil;
65
67
                return;
 
68
        }
66
69
 
67
70
        t.when = runtime·nanotime() + ns;
68
71
        t.period = 0;