summaryrefslogtreecommitdiffstats
path: root/cpukit/score
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score')
-rw-r--r--cpukit/score/cpu/mips/cpu_asm.S4
-rw-r--r--cpukit/score/cpu/nios2/nios2-iic-low-level.S4
-rw-r--r--cpukit/score/src/heapallocate.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/score/cpu/mips/cpu_asm.S b/cpukit/score/cpu/mips/cpu_asm.S
index 5692af22d7..327df4d2e9 100644
--- a/cpukit/score/cpu/mips/cpu_asm.S
+++ b/cpukit/score/cpu/mips/cpu_asm.S
@@ -750,7 +750,7 @@ _ISR_Handler_Exception:
** Note, if the exception vector returns, rely on it to have
** adjusted EPC so we will return to some correct address. If
** this is not done, we might get stuck in an infinite loop because
- ** we'll return to the instruction where the exception occured and
+ ** we'll return to the instruction where the exception occurred and
** it could throw again.
**
** It is expected the only code using the exception processing is
@@ -776,7 +776,7 @@ _ISR_Handler_Exception:
beqz t4,excnodelay
NOP
- * it did, now see if the branch occured or not *
+ * it did, now see if the branch occurred or not *
li t3,CAUSE_BT
AND t4,t1,t3
beqz t4,excnobranch
diff --git a/cpukit/score/cpu/nios2/nios2-iic-low-level.S b/cpukit/score/cpu/nios2/nios2-iic-low-level.S
index a3d138883b..11c2c5e9eb 100644
--- a/cpukit/score/cpu/nios2/nios2-iic-low-level.S
+++ b/cpukit/score/cpu/nios2/nios2-iic-low-level.S
@@ -137,7 +137,7 @@ stuck_in_exception:
/*
* Restore the saved registers, so that all general purpose registers
- * have been restored to their state at the time the interrupt occured.
+ * have been restored to their state at the time the interrupt occurred.
*/
ldw r1, 0(sp)
@@ -277,7 +277,7 @@ _ISR_Handler:
/*
* Restore the saved registers, so that all general purpose registers
- * have been restored to their state at the time the interrupt occured.
+ * have been restored to their state at the time the interrupt occurred.
*/
ldw r1, 0(sp)
diff --git a/cpukit/score/src/heapallocate.c b/cpukit/score/src/heapallocate.c
index 663f7ac775..fc85f6f1bd 100644
--- a/cpukit/score/src/heapallocate.c
+++ b/cpukit/score/src/heapallocate.c
@@ -207,7 +207,7 @@ void *_Heap_Allocate_aligned_with_boundary(
bool search_again = false;
if ( block_size_floor < alloc_size ) {
- /* Integer overflow occured */
+ /* Integer overflow occurred */
return NULL;
}