Subversion Repositories Kolibri OS

Rev

Rev 8866 | Rev 8896 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 8866 Rev 8867
Line 19... Line 19...
19
;;          GNU GENERAL PUBLIC LICENSE                             ;;
19
;;          GNU GENERAL PUBLIC LICENSE                             ;;
20
;;             Version 2, June 1991                                ;;
20
;;             Version 2, June 1991                                ;;
21
;;                                                                 ;;
21
;;                                                                 ;;
22
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
22
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Line 23... Line 23...
23
 
23
 
Line 24... Line 24...
24
$Revision: 8866 $
24
$Revision: 8867 $
25
 
25
 
26
uglobal
26
uglobal
27
        net_10ms        dd ?
27
        net_10ms        dd ?
Line 434... Line 434...
434
; Send event to all applications
434
; Send event to all applications
435
        push    edi ecx
435
        push    edi ecx
436
        mov     edi, SLOT_BASE
436
        mov     edi, SLOT_BASE
437
        mov     ecx, [thread_count]
437
        mov     ecx, [thread_count]
438
  .loop:
438
  .loop:
439
        add     edi, 256
439
        add     edi, sizeof.APPDATA
440
        or      [edi + APPDATA.event_mask], EVENT_NETWORK2
440
        or      [edi + APPDATA.occurred_events], EVENT_NETWORK2
441
        loop    .loop
441
        loop    .loop
442
        pop     ecx edi
442
        pop     ecx edi
Line 443... Line 443...
443
 
443