Changeset 269b559 in rtems-libbsd


Ignore:
Timestamp:
11/24/16 11:01:28 (7 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
5, 5-freebsd-12, 6-freebsd-12, freebsd-9.3, master
Children:
f7a4107
Parents:
cfec446
git-author:
Sebastian Huber <sebastian.huber@…> (11/24/16 11:01:28)
git-committer:
Sebastian Huber <sebastian.huber@…> (11/24/16 11:38:35)
Message:

ftpd: Use floating-point tasks due to syslog()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • rtemsbsd/ftpd/ftpd.c

    rcfec446 r269b559  
    216216#include <rtems/ftpd.h>
    217217
    218 #include <machine/rtems-bsd-printf-to-iprintf.h>
    219 
    220218#ifdef __GNUC__
    221219/* change to #if 1 to disable syslog entirely */
     
    447445      RTEMS_PREEMPT | RTEMS_NO_TIMESLICE |
    448446      RTEMS_NO_ASR | RTEMS_INTERRUPT_LEVEL(0),
    449       RTEMS_NO_FLOATING_POINT | RTEMS_LOCAL,
     447      RTEMS_FLOATING_POINT | RTEMS_LOCAL,
    450448      &info->tid);
    451449    if (sc == RTEMS_SUCCESSFUL)
     
    21482146    RTEMS_PREEMPT | RTEMS_NO_TIMESLICE | RTEMS_NO_ASR |
    21492147    RTEMS_INTERRUPT_LEVEL(0),
    2150     RTEMS_NO_FLOATING_POINT | RTEMS_LOCAL,
     2148    RTEMS_FLOATING_POINT | RTEMS_LOCAL,
    21512149    &tid);
    21522150
Note: See TracChangeset for help on using the changeset viewer.