Ignore:
Timestamp:
Jan 29, 2018, 5:48:47 PM (6 years ago)
Author:
alain
Message:

cosmetic

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/devices/dev_txt.h

    r407 r422  
    2727#include <kernel_config.h>
    2828#include <hal_types.h>
     29#include <xlist.h>
     30#include <remote_spinlock.h>
    2931
    3032/****  Forward declarations  ****/
     
    4749 *   waiting strategy for the calling thread.
    4850 *****************************************************************************************/
     51
     52/******************************************************************************************
     53 * This defines the (implementation independant) extension for the generic TXT device.
     54 *****************************************************************************************/
     55
     56typedef struct txt_extend_s
     57{
     58    xptr_t            owner_xp;  /*! ext. pointer on current process owner (reference)   */
     59    xlist_entry_t     root;      /*! root of list of processes attached to   same TXT    */
     60    remote_spinlock_t lock;      /*! lock protecting this list                           */
     61}
     62txt_extend_t;
    4963
    5064/******************************************************************************************
Note: See TracChangeset for help on using the changeset viewer.