Changeset fc9c4e1 in mainline


Ignore:
Timestamp:
2005-05-26T08:36:06Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
60049aa
Parents:
2998046
Message:

Replace "THREAD→cpu" with "CPU" in scheduler().

Add trailing '\n' to memmap.h
Fix some translations.
Relpace one Czech sentence with its English translation.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/boot/memmap.S

    r2998046 rfc9c4e1  
    4848       
    4949e820begin:
    50         xorl    %ebx,%ebx       #at first call must be ebx==0
     50        xorl    %ebx,%ebx       # during first call, ebx must be 0
    5151       
    5252        movw    $e820table,%di
     
    6363       
    6464       
    65         cmpl    $E820_SMAP,%eax         # verifiing BIOS
     65        cmpl    $E820_SMAP,%eax         # verifying BIOS
    6666        jne             e820end
    6767       
     
    8787                 
    8888e820table:
    89         .space  (32*E820_RECORD_SIZE),0 #prostor na 32 zaznamu delky E820_RECORD_SIZE
     89        .space  (32*E820_RECORD_SIZE),0 # space for 32 records, each E820_RECORD_SIZE bytes long
  • src/proc/scheduler.c

    r2998046 rfc9c4e1  
    269269                            spinlock_unlock(&threads_lock);
    270270
    271                             spinlock_lock(&THREAD->cpu->lock);
    272                             if(THREAD->cpu->fpu_owner==THREAD) THREAD->cpu->fpu_owner=NULL;
    273                             spinlock_unlock(&THREAD->cpu->lock);
     271                            spinlock_lock(&CPU->lock);
     272                            if(CPU->fpu_owner==THREAD) CPU->fpu_owner=NULL;
     273                            spinlock_unlock(&CPU->lock);
    274274
    275275                           
Note: See TracChangeset for help on using the changeset viewer.