Changeset 5e3e42c7 in mainline for uspace/lib/ipcgfx/private/server.h


Ignore:
Timestamp:
2020-06-16T10:52:38Z (4 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
94f3747
Parents:
3e640e5
git-author:
Jiri Svoboda <jiri@…> (2020-06-15 17:31:57)
git-committer:
Jiri Svoboda <jiri@…> (2020-06-16 10:52:38)
Message:

IPC GC server needs to destroy area it shared in

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ipcgfx/private/server.h

    r3e640e5 r5e3e42c7  
    4343#include <gfx/context.h>
    4444#include <gfx/coord.h>
     45#include <stdbool.h>
    4546
    4647/** Server-side of IPC GC connection.
     
    6566        /** Bitmap ID */
    6667        sysarg_t bmp_id;
     68        /** @c true if we allocated the pixels */
     69        bool myalloc;
     70        /** Pixels of the bitmap */
     71        void *pixels;
    6772} ipc_gc_srv_bitmap_t;
    6873
Note: See TracChangeset for help on using the changeset viewer.