Changeset 5be5396 in mainline for uspace/lib


Ignore:
Timestamp:
2024-10-11T16:08:55Z (15 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master
Children:
b3b79981
Parents:
fb06afd8
Message:

Remcons needs to properly clean up when terminating a user session

Location:
uspace/lib
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/console/src/con_srv.c

    rfb06afd8 r5be5396  
    466466                }
    467467
    468                 if (!received)
     468                if (!received || srv->srvs->aborted)
    469469                        break;
    470470
  • uspace/lib/vt/include/vt/vt100.h

    rfb06afd8 r5be5396  
    179179extern void vt100_set_pos(vt100_t *, sysarg_t, sysarg_t);
    180180extern void vt100_goto(vt100_t *, sysarg_t, sysarg_t);
     181extern void vt100_sgr(vt100_t *, unsigned int);
    181182extern void vt100_set_sgr(vt100_t *, char_attrs_t);
    182183extern void vt100_set_attr(vt100_t *, char_attrs_t);
  • uspace/lib/vt/src/vt100.c

    rfb06afd8 r5be5396  
    6666 * @param mode SGR mode number
    6767 */
    68 static void vt100_sgr(vt100_t *vt, unsigned int mode)
     68void vt100_sgr(vt100_t *vt, unsigned int mode)
    6969{
    7070        char control[MAX_CONTROL];
Note: See TracChangeset for help on using the changeset viewer.