~ubuntu-branches/ubuntu/quantal/libxfont/quantal-updates

« back to all changes in this revision

Viewing changes to src/fc/fsio.h

  • Committer: Package Import Robot
  • Author(s): Cyril Brulebois, Cyril Brulebois, Julien Cristau
  • Date: 2012-03-04 09:24:59 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20120304092459-cbu7e0ujz24lslpt
Tags: 1:1.4.5-1
[ Cyril Brulebois ]
* New upstream release.
* Switch to dh:
  - Bump debhelper build-dep and compat.
  - Rewrite debian/rules, using autoreconf and quilt sequences.
  - Adjust build dependencies accordingly.
  - Use build-main and build-udeb as build directories.
  - Adjust .install accordingly.
* Remove xsfbs accordingly.
* Add support for hardened build flags through dpkg-buildflags, based
  on a patch by Moritz Muehlenhoff, thanks! (Closes: #654154).

[ Julien Cristau ]
* Remove David Nusinow from Uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
    CARD32      brokenWriteTime;        /* time to retry broken write */
111
111
    CARD32      blockedConnectTime;     /* time to abort blocked connect */
112
112
    CARD32      brokenConnectionTime;   /* time to retry broken connection */
113
 
    
 
113
 
114
114
    FSBlockDataPtr  blockedRequests;
115
 
    
 
115
 
116
116
    struct _XtransConnInfo *trans_conn; /* transport connection object */
117
117
}           FSFpeRec;
118
118
 
129
129
#define FSIO_ERROR  -1
130
130
 
131
131
extern Bool _fs_reopen_server ( FSFpePtr conn );
132
 
extern int _fs_write ( FSFpePtr conn, char *data, long size );
133
 
extern int _fs_write_pad ( FSFpePtr conn, char *data, long len );
 
132
extern int _fs_write ( FSFpePtr conn, const char *data, long size );
 
133
extern int _fs_write_pad ( FSFpePtr conn, const char *data, long len );
134
134
extern int _fs_wait_for_readable ( FSFpePtr conn, int ms );
135
135
extern long _fs_pad_length (long len);
136
136