summaryrefslogtreecommitdiff
path: root/auto_sync.go
diff options
context:
space:
mode:
authorAndrew Gallant (Ocelot) <[email protected]>2012-05-07 21:58:33 -0400
committerAndrew Gallant (Ocelot) <[email protected]>2012-05-07 21:58:33 -0400
commiteeb7fd0d1ed91c8f8e62572b1b5e9ef0648bffd0 (patch)
tree000fcee1a7741ba6c5f799732b083049ff054070 /auto_sync.go
parentd16723697e0450c3d410a5637eec40242c45b4f8 (diff)
more clean up. use log instead of fmt.Print to stderr. bug fix for event blocking (a hack fix for now).
Diffstat (limited to 'auto_sync.go')
-rw-r--r--auto_sync.go32
1 files changed, 18 insertions, 14 deletions
diff --git a/auto_sync.go b/auto_sync.go
index a59cf20..ef69ebe 100644
--- a/auto_sync.go
+++ b/auto_sync.go
@@ -1,7 +1,7 @@
package xgb
/*
- This file was generated by sync.xml on May 6 2012 5:48:47pm EDT.
+ This file was generated by sync.xml on May 7 2012 9:17:57pm EDT.
This file is automatically generated. Edit at your peril!
*/
@@ -16,7 +16,7 @@ func (c *Conn) SyncInit() error {
case err != nil:
return err
case !reply.Present:
- return newError("No extension named SYNC could be found on on the server.")
+ return errorf("No extension named SYNC could be found on on the server.")
}
c.extLock.Lock()
@@ -24,6 +24,9 @@ func (c *Conn) SyncInit() error {
for evNum, fun := range newExtEventFuncs["SYNC"] {
newEventFuncs[int(reply.FirstEvent)+evNum] = fun
}
+ for errNum, fun := range newExtErrorFuncs["SYNC"] {
+ newErrorFuncs[int(reply.FirstError)+errNum] = fun
+ }
c.extLock.Unlock()
return nil
@@ -31,8 +34,19 @@ func (c *Conn) SyncInit() error {
func init() {
newExtEventFuncs["SYNC"] = make(map[int]newEventFun)
+ newExtErrorFuncs["SYNC"] = make(map[int]newErrorFun)
}
+// Skipping definition for base type 'Card16'
+
+// Skipping definition for base type 'Char'
+
+// Skipping definition for base type 'Card32'
+
+// Skipping definition for base type 'Double'
+
+// Skipping definition for base type 'Bool'
+
// Skipping definition for base type 'Float'
// Skipping definition for base type 'Id'
@@ -49,16 +63,6 @@ func init() {
// Skipping definition for base type 'Int8'
-// Skipping definition for base type 'Card16'
-
-// Skipping definition for base type 'Char'
-
-// Skipping definition for base type 'Card32'
-
-// Skipping definition for base type 'Double'
-
-// Skipping definition for base type 'Bool'
-
const (
SyncAlarmstateActive = 0
SyncAlarmstateInactive = 1
@@ -656,7 +660,7 @@ func (err SyncCounterError) Error() string {
}
func init() {
- newErrorFuncs[0] = NewSyncCounterError
+ newExtErrorFuncs["SYNC"][0] = NewSyncCounterError
}
// Error definition SyncAlarm (1)
@@ -716,7 +720,7 @@ func (err SyncAlarmError) Error() string {
}
func init() {
- newErrorFuncs[1] = NewSyncAlarmError
+ newExtErrorFuncs["SYNC"][1] = NewSyncAlarmError
}
// Request SyncInitialize