473,598 Members | 3,266 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Systems software versus applications software definitions

How do we define systems programs? when we say systems programming,
does it necessary mean that the programs we write need to interact
with hardware directly? For example, OS, compiler, kernel, drivers,
network protocols, etc...? Couple years ago, yes, I understand this is
definitely true. However, as the software applications become more and
more complicated, some people try to argue that. Some people argue the
definition of systems programs depend on the level of abstractions. I
heard people saying that web server is a systems software, which I
feel confused. I think web server is an application software. Yes,
other applications run on top of web server.

Please advise and discuss. thanks!!
Nov 14 '05 #1
54 5787
>How do we define systems programs?

comp.lang.c does not.
when we say systems programming,
does it necessary mean that the programs we write need to interact
with hardware directly?
That term does not have a precise definition and there is not
a sharp line between systems and applications programming.
The line gets particularly fuzzy when you are talking about
computers embedded into other devices, like cell phones.

No, I'd consider a lot of the low-level network stuff like the
TCP stack to be systems programming, even if it's not specific
to a particular type of network hardware (and there may not BE
any specific network hardware beyond a serial port. There are
also "tunnel drivers" which have a network stack but don't
actually use any hardware at all).
For example, OS, compiler, kernel, drivers,
network protocols, etc...? Couple years ago, yes, I understand this is
definitely true. However, as the software applications become more and
more complicated, some people try to argue that.
Some people argue the
definition of systems programs depend on the level of abstractions. I
heard people saying that web server is a systems software, which I
feel confused.
The video driver in Microsoft Windows probably calls Internet
Explorer to actually access the hardware :-( In any case, Microsoft
claims IE is so tightly bound into the OS you can't remove it.
I think they said that under oath in court, too.
I think web server is an application software. Yes,
other applications run on top of web server.


I consider the web server in my VOIP terminal adapter to be systems
programming, in large part because it is burned into flash and is
used to configure the adapter. The same thing applies to the Web
Management Card (which runs a web server, SNMP server, and a few
other things) that plugs into my APC UPS, for much the same reason.

On the other hand, Apache running on my PC I consider to be an
application (which, as you said, has other applications running
under it, like PHP and under that various web pages which do various
things, like present an index of my CD collection.)

Gordon L. Burditt
Nov 14 '05 #2
On 24 Nov 2004 16:00:55 -0800, Matt wrote:
How do we define systems programs? when we say systems programming,
does it necessary mean that the programs we write need to interact
with hardware directly? For example, OS, compiler, kernel, drivers,
network protocols, etc...? Couple years ago, yes, I understand this is
definitely true. However, as the software applications become more and
more complicated, some people try to argue that. Some people argue the
definition of systems programs depend on the level of abstractions. I
heard people saying that web server is a systems software, which I
feel confused. I think web server is an application software. Yes,
other applications run on top of web server.

Please advise and discuss. thanks!!


I personally would say programming an application is getting easier with
time (C#, Java, VB,...). Hardly anyone still bothers with Assembly...

On the topic, for me a system program is the one that either a) interact
with the hardware directly (and are written on a very low level) or b)
interacts with the OS on a low level (PartitonMagic for example).
Nov 14 '05 #3
On 25 Nov 2004 00:26:42 GMT, Gordon Burditt wrote:
The video driver in Microsoft Windows probably calls Internet
Explorer to actually access the hardware :-( In any case, Microsoft
claims IE is so tightly bound into the OS you can't remove it.
I think they said that under oath in court, too.


Kind of off topic, but... IE can be "safely" removed from the OS.
Nov 14 '05 #4

"Matej Barac" <ma*********@gm ail.com> wrote in message
news:1n******** *************** ******@40tude.n et...
On 24 Nov 2004 16:00:55 -0800, Matt wrote:
<snip>
I personally would say programming an application is getting easier with
time (C#, Java, VB,...). Hardly anyone still bothers with Assembly...


Unless, of course you are into embedded software, where it's (on a regular
basis) neccesary in order to implement ISR's (for one instance). Also
implementing support for many CPU/HW features can hardly do without.

<snip>
Nov 14 '05 #5
> The video driver in Microsoft Windows probably calls Internet
Explorer to actually access the hardware :-( In any case, Microsoft
claims IE is so tightly bound into the OS you can't remove it.
I think they said that under oath in court, too.


Correct. The Windows shell (the code which manages the taskbar, start menu,
file folder windows and things like My Computer window) is hardly linked to
MSHTML and is dependent on it.

As about "system" vs. "app" level development - I would jugde from the
practical standpoint of a) tools used b) stability requirements. From such
point of view, all embedded code is system one :)

--
Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
ma***@storagecr aft.com
http://www.storagecraft.com

Nov 14 '05 #6
> Kind of off topic, but... IE can be "safely" removed from the OS.

No.

You can install another browser and use it as a default handler for URLs.
Nothing more. Help files, shell folders and lots of new-fashion XP's UI are
still shown by MSHTML.

--
Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
ma***@storagecr aft.com
http://www.storagecraft.com

Nov 14 '05 #7
Matt wrote:
How do we define systems programs? when we say systems programming,
does it necessary mean that the programs we write need to interact
with hardware directly? For example, OS, compiler, kernel, drivers,
network protocols, etc...? Couple years ago, yes, I understand this is
definitely true. However, as the software applications become more and
more complicated, some people try to argue that. Some people argue the
definition of systems programs depend on the level of abstractions. I
heard people saying that web server is a systems software, which I
feel confused. I think web server is an application software. Yes,
other applications run on top of web server.

Please advise and discuss. thanks!!


I'd say that system software generally shares the following characteristics :
- its performance sensitive
- it has some dependence on hardware
Now, kernel + compiler definitely satisfy both these two requirements,
network protocol stacks mostly the first, drivers mostly the second.

Nov 14 '05 #8
> I'd say that system software generally shares the following
characteristics :
- its performance sensitive
- it has some dependence on hardware


I would disagree. For me system software is more or less equivalent to
being part of the trusted computing base, with the more or less implied
side effect that if something unexpected goes wrong with it, you need to
crash the system. Handling hardware is only part of that, and there are
scenarios where you can have software driving hardware directly without
being part of the TCB - rare, but it has happened. Performance - sure,
you would want that, but correctness is top priority. As a counterpoint,
how many OSs have you seen that have been compiled with optimization for
the particular processor model they will run on?

Jan
Nov 14 '05 #9
Hi Matt, I'm Matt too,

Great question, I always wondered that too. I met an embedded programmer in
San Diego years ago. He said the more down to the hardware level he got, the
more exciting it was. Also maybe somebody could explain this, I've seen a
lot of mainframe positions advertised as "system programmer"

Matt

"Matt" <jr********@hot mail.com> wrote in message
news:ba******** *************** ***@posting.goo gle.com...
How do we define systems programs? when we say systems programming,
does it necessary mean that the programs we write need to interact
with hardware directly? For example, OS, compiler, kernel, drivers,
network protocols, etc...? Couple years ago, yes, I understand this is
definitely true. However, as the software applications become more and
more complicated, some people try to argue that. Some people argue the
definition of systems programs depend on the level of abstractions. I
heard people saying that web server is a systems software, which I
feel confused. I think web server is an application software. Yes,
other applications run on top of web server.

Please advise and discuss. thanks!!

Nov 14 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

36
6352
by: Andrea Griffini | last post by:
I did it. I proposed python as the main language for our next CAD/CAM software because I think that it has all the potential needed for it. I'm not sure yet if the decision will get through, but something I'll need in this case is some experience-based set of rules about how to use python in this context. For example... is defining readonly attributes in classes worth the hassle ? Does duck-typing scale well in complex
18
4591
by: mountain man | last post by:
Greetings to all database professionals and laymen, Let us make a bold assumption that we have developed a software tool for the SQL Server environment which simply acts as an interface between an end-user in an organization and the database, through the exclusive use of stored procedures which are authored by the organization or by software developers. All development work at the application software level may thereby be conducted...
0
1943
by: Volkan Arslan | last post by:
------------------------------------------------------------- LASER Summer School on Software Engineering Software engineering for concurrent and real-time systems Elba, Italy September 11 - 17, 2005 http://se.inf.ethz.ch/laser -------------------------------------------------------------
6
3170
by: Javier | last post by:
Hello people, I'm recoding a library that made a few months ago, and now that I'm reading what I wrote I have some questions. My program reads black and white images from a bitmap (BMP 24bpp without compression). It has it's words and dwords stored in little- endian, so I do a conversion to big-endian when reading full words or dwords. I have done this because my system is big-endian. But now... what if one compiles the library in a...
0
7899
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8397
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8264
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6718
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
5850
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
3897
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
3939
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2412
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
1250
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.