diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2007-03-08 12:13:18 -0500 |
---|---|---|
committer | Eamon Walsh <ewalsh@moss-uranus.epoch.ncsc.mil> | 2007-03-08 12:13:18 -0500 |
commit | 947f8d249bac61beb10669d935888c4c280b5062 (patch) | |
tree | 8589326cc54feeddcec824c6204dbf8173a67ba8 /include/privates.h | |
parent | c45f6762080ef00b41d9f73441a9f0e605253008 (diff) |
devPrivates rework: redo interface again, dropping parent and type parameters
as well as preallocation routine.
Diffstat (limited to 'include/privates.h')
-rw-r--r-- | include/privates.h | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/include/privates.h b/include/privates.h index 9c95350fa..d1e269bc3 100644 --- a/include/privates.h +++ b/include/privates.h @@ -19,13 +19,10 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * STUFF FOR PRIVATES *****************************************************************/ -typedef struct _PrivateKey { - int unused; -} devprivate_key_t; +typedef char devprivate_key_t; typedef struct _Private { devprivate_key_t *key; - int dontfree; pointer value; struct _Private *next; } PrivateRec; @@ -39,11 +36,10 @@ typedef struct _Private { /* * Request pre-allocated private space for your driver/module. - * A non-null pScreen argument restricts to objects on a given screen. + * Calling this is not necessary if only a pointer by itself is needed. */ extern int -dixRequestPrivate(RESTYPE type, devprivate_key_t *const key, - unsigned size, pointer pScreen); +dixRequestPrivate(devprivate_key_t *const key, unsigned size); /* * Allocates a new private and attaches it to an existing object. @@ -128,13 +124,7 @@ dixRegisterPrivateDeleteFunc(devprivate_key_t *const key, CallbackProcPtr callback, pointer userdata); /* - * Allocates all pre-requested private space in one chunk. - */ -extern PrivateRec * -dixAllocatePrivates(RESTYPE type, pointer parent); - -/* - * Frees any private space that is not part of an object. + * Frees private data. */ extern void dixFreePrivates(PrivateRec *privates); |